Skip to content

Commit

Permalink
exclude docs/ from lint checking
Browse files Browse the repository at this point in the history
  • Loading branch information
matjobst committed Jul 5, 2023
1 parent 516d8dc commit 4975f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
ruff --format=github --target-version=py37 .
ruff --format=github --target-version=py37 --exclude=docs/ .
- name: Test with pytest
run: |
pytest

0 comments on commit 4975f6e

Please sign in to comment.