We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8353f54 commit 2f306f1Copy full SHA for 2f306f1
.github/workflows/package-verification.yml
@@ -27,10 +27,13 @@ jobs:
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
- python -m pip install flake8 flake8-pyproject
+ python -m pip install flake8 flake8-pyproject ruff
31
- name: Lint with flake8
32
33
flake8 .
34
+ - name: Lint with ruff
35
+ run: |
36
+ ruff check .
37
38
test:
39
runs-on: ubuntu-latest
0 commit comments