Skip to content

Commit 329ffc8

Browse files
Run the formatter after the linter
Of course, that's not really an issue without --fix, but it's good practice any way.
1 parent 4615d4d commit 329ffc8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pr-type-lint-format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
- name: Run type check using mypy
2727
run: |
2828
mypy
29+
- name : Run linting check using ruff
30+
run: |
31+
ruff check
2932
- name: Run formatting check using black
3033
run: |
3134
black . --check
32-
- name : Run linting check using ruff
33-
run: |
34-
ruff check .
3535
- name: Run spell check using codespell
3636
run: |
3737
codespell -d pynetdicom

0 commit comments

Comments
 (0)