From 49c107c47d8ad037ea1f9c7c3a86b15ce72205b2 Mon Sep 17 00:00:00 2001 From: Paul Brabban Date: Thu, 25 Aug 2022 20:35:12 +0100 Subject: [PATCH] Needed to set scripts executable to get them to work locally. Check issue reproduces in CI --- .github/workflows/python-exercise.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-exercise.yml b/.github/workflows/python-exercise.yml index ae5971e..afd83ca 100644 --- a/.github/workflows/python-exercise.yml +++ b/.github/workflows/python-exercise.yml @@ -15,5 +15,8 @@ jobs: - uses: actions/checkout@v2 - name: Install Dependencies run: make install-dependencies + - name: Lint + run: make lint - name: Test - run: make test \ No newline at end of file + run: make test + \ No newline at end of file