Skip to content

Commit

Permalink
Try to fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
grigorescu committed Jan 5, 2024
1 parent ab8442d commit 7ad78e8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
lint:

runs-on: ubuntu-latest

strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
Expand All @@ -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"

0 comments on commit 7ad78e8

Please sign in to comment.