Skip to content

Commit 431399c

Browse files
committed
Update ghaction away from flake8 to ruff
1 parent 40ce6f9 commit 431399c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/flake8.yml renamed to .github/workflows/ruff.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check Code Style - FLAKE8
1+
name: Check Code Style - ruff
22

33
on: [push, pull_request]
44

@@ -15,7 +15,7 @@ jobs:
1515
# installation problems if out of date.
1616
python -m pip install --upgrade pip setuptools numpy
1717
18-
pip install flake8
19-
- name: Run flake8
18+
pip install ruff
19+
- name: Run ruff
2020
run: |
21-
flake8
21+
ruff check

0 commit comments

Comments
 (0)