We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc6a5d9 commit bdf3dc8Copy full SHA for bdf3dc8
1 file changed
.github/workflows/pre-commit-checks.yml
@@ -42,19 +42,19 @@ jobs:
42
43
- name: Run black
44
id: black
45
- run: black --check .
+ run: black --check . --exclude tests
46
47
- name: Run mypy
48
id: mypy
49
- run: mypy . --install-types --non-interactive --ignore-missing-imports
+ run: mypy . --install-types --non-interactive --ignore-missing-imports --exclude tests
50
51
- name: Run isort
52
id: isort
53
- run: isort --check --profile=black .
+ run: isort --check --profile=black . --skip tests
54
55
- name: Run ruff
56
id: ruff
57
- run: ruff check .
+ run: ruff check . --exclude tests
58
59
- name: Check if any checks failed
60
if: failure()
0 commit comments