Skip to content

Commit c1f4dd1

Browse files
committed
Run the full ruff check, not just the format check
1 parent 6c1aa81 commit c1f4dd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: poetry run pyright
3434
working-directory: python/selfie-lib
3535
- name: selfie-lib - ruff
36-
run: poetry run ruff format --check
36+
run: poetry run ruff format --check && poetry run ruff check
3737
working-directory: python/selfie-lib
3838
- name: pytest-selfie - poetry install
3939
run: poetry install
@@ -42,7 +42,7 @@ jobs:
4242
run: poetry run pyright
4343
working-directory: python/pytest-selfie
4444
- name: pytest-selfie - ruff
45-
run: poetry run ruff format --check
45+
run: poetry run ruff format --check && poetry run ruff check
4646
working-directory: python/pytest-selfie
4747
- name: example-pytest-selfie - poetry install
4848
run: poetry install
@@ -53,5 +53,5 @@ jobs:
5353
# run: poetry run pyright
5454
# working-directory: python/example-pytest-selfie
5555
- name: example-pytest-selfie - ruff
56-
run: poetry run ruff format --check
56+
run: poetry run ruff format --check && poetry run ruff check
5757
working-directory: python/example-pytest-selfie

0 commit comments

Comments
 (0)