Skip to content

Commit

Permalink
Don't continue on linting error and extended linting checks
Browse files Browse the repository at this point in the history
  • Loading branch information
casabre committed Jun 14, 2023
1 parent 3525ae1 commit f44d76c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
linting:
strategy:
fail-fast: false
fail-fast: true
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
Expand All @@ -29,11 +29,15 @@ jobs:
- uses: isort/isort-action@master
with:
configuration: "--check-only --diff"
- name: Analysing the code style
run: |
tox -e codestyle
- name: Analysing the docstyle
run: |
tox -e docstyle
- name: Analysing the code with mypy
continue-on-error: true
run: |
tox -e types
- name: Analysing the code with pylint/flake
continue-on-error: true
run: |
tox -e errors

0 comments on commit f44d76c

Please sign in to comment.