Skip to content

Commit 50719ac

Browse files
committed
ci: Change linting order to run ruff before flake8
1 parent e5e4557 commit 50719ac

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ jobs:
3131
python -m pip install --upgrade pip
3232
pip install flake8-pyproject isort ruff
3333
34-
- name: Lint codebase with flake8
35-
run: |
36-
flake8 --builtins=ArgumentError .
37-
3834
- name: Lint the Python imports with isort
3935
run: |
4036
isort --check-only .
@@ -43,6 +39,10 @@ jobs:
4339
run: |
4440
ruff check --preview --output-format github
4541
42+
- name: Lint codebase with flake8
43+
run: |
44+
flake8 --builtins=ArgumentError .
45+
4646
spellcheck:
4747
name: "Spellcheck everything"
4848
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)