Skip to content

Commit 7c765fa

Browse files
authored
ci: only run on src folder (#23)
1 parent 4840eae commit 7c765fa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci_check_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Run Ruff Formatting
6464
run: |
65-
poetry run ruff format --config pyproject.toml .
65+
poetry run ruff format --config pyproject.toml src/
6666
6767
lint:
6868
runs-on: ubuntu-latest
@@ -91,7 +91,7 @@ jobs:
9191
9292
- name: Run Ruff Linting
9393
run: |
94-
poetry run ruff check --config pyproject.toml .
94+
poetry run ruff check --config pyproject.toml src/
9595
9696
type-check:
9797
runs-on: ubuntu-latest
@@ -120,7 +120,7 @@ jobs:
120120
121121
- name: Run Mypy Type Checking
122122
run: |
123-
poetry run mypy --config-file pyproject.toml .
123+
poetry run mypy --config-file pyproject.toml src/
124124
125125
test:
126126
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)