From 7ad78e8fcce260d56d40bdc866841dd2001869bc Mon Sep 17 00:00:00 2001 From: Vlad Grigorescu Date: Fri, 5 Jan 2024 16:43:58 -0600 Subject: [PATCH] Try to fix syntax error --- .github/workflows/lint.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index aa891a53..95bf48f8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,6 +6,7 @@ jobs: lint: runs-on: ubuntu-latest + strategy: matrix: python: ["3.8", "3.9", "3.10", "3.11"] @@ -19,16 +20,16 @@ jobs: python-version: ${{ matrix.python }} - name: flake8: before - run: ./.ci-scripts/flake8_before.sh + run: "./.ci-scripts/flake8_before.sh" - name: flake8: run - run: ./.ci-scripts/flake8_run.sh + run: "./.ci-scripts/flake8_run.sh" - name: pytest: before - run: ./.ci-scripts/pytest_before.sh + run: "./.ci-scripts/pytest_before.sh" - name: pytest: run - run: ./.ci-scripts/pytest_run.sh + run: "./.ci-scripts/pytest_run.sh" - name: pytest: after - run: ./.ci-scripts/pytest_after.sh + run: "./.ci-scripts/pytest_after.sh"