We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a1f57f commit 72dc184Copy full SHA for 72dc184
.github/workflows/main.yml
@@ -73,14 +73,14 @@ jobs:
73
- name: Run tests
74
if: ${{ !startsWith(matrix.platform, 'ubuntu') }}
75
run: python -m unittest discover -s tests -v
76
- pyflakes:
+ ruff:
77
runs-on: ubuntu-latest
78
steps:
79
- uses: actions/checkout@v4
80
- uses: actions/setup-python@v5
81
with:
82
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
+ - name: Install ruff
+ run: python -m pip install ruff
+ - name: Run ruff check
+ run: ruff check --select F,E,I --ignore E501 .
0 commit comments