Skip to content

Commit 72dc184

Browse files
committed
GitHub CI: Run ruff instead of pyflakes
1 parent 9a1f57f commit 72dc184

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ jobs:
7373
- name: Run tests
7474
if: ${{ !startsWith(matrix.platform, 'ubuntu') }}
7575
run: python -m unittest discover -s tests -v
76-
pyflakes:
76+
ruff:
7777
runs-on: ubuntu-latest
7878
steps:
7979
- uses: actions/checkout@v4
8080
- uses: actions/setup-python@v5
8181
with:
8282
python-version: '3.x'
83-
- name: Install Python dependencies
84-
run: python -m pip install pyflakes
85-
- name: Run pyflakes
86-
run: python -m pyflakes ReText/ tests/ setup.py
83+
- name: Install ruff
84+
run: python -m pip install ruff
85+
- name: Run ruff check
86+
run: ruff check --select F,E,I --ignore E501 .

0 commit comments

Comments
 (0)