Skip to content

Commit ffc0549

Browse files
committed
remove isort black and flake8, move towards ruff
1 parent c2651fb commit ffc0549

1 file changed

Lines changed: 11 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@ jobs:
3535
- name: Test with pytest
3636
run: |
3737
pytest ./tests
38-
- name: Check with isort
39-
run: |
40-
isort --check --diff .
41-
- name: Check with black
42-
run: |
43-
black --check --diff .
44-
- name: Check with flake8
45-
run: |
46-
flake8 --show-source --statistics .
38+
39+
# will be replaced by ruff
40+
# - name: Check with isort
41+
# run: |
42+
# isort --check --diff .
43+
# - name: Check with black
44+
# run: |
45+
# black --check --diff .
46+
# - name: Check with flake8
47+
# run: |
48+
# flake8 --show-source --statistics .

0 commit comments

Comments
 (0)