We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4840eae commit 7c765faCopy full SHA for 7c765fa
1 file changed
.github/workflows/ci_check_release.yml
@@ -62,7 +62,7 @@ jobs:
62
63
- name: Run Ruff Formatting
64
run: |
65
- poetry run ruff format --config pyproject.toml .
+ poetry run ruff format --config pyproject.toml src/
66
67
lint:
68
runs-on: ubuntu-latest
@@ -91,7 +91,7 @@ jobs:
91
92
- name: Run Ruff Linting
93
94
- poetry run ruff check --config pyproject.toml .
+ poetry run ruff check --config pyproject.toml src/
95
96
type-check:
97
@@ -120,7 +120,7 @@ jobs:
120
121
- name: Run Mypy Type Checking
122
123
- poetry run mypy --config-file pyproject.toml .
+ poetry run mypy --config-file pyproject.toml src/
124
125
test:
126
0 commit comments