We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea37d98 commit 16507a1Copy full SHA for 16507a1
1 file changed
.github/workflows/linters.yml
@@ -4,7 +4,7 @@ on:
4
branches:
5
- main
6
jobs:
7
- ruff-check:
+ linters:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v4
@@ -15,7 +15,9 @@ jobs:
15
- name: Install dependencies
16
run: |
17
python -m pip install --upgrade pip
18
- pip install ruff
+ pip install ruff flake8
19
# Update output format to enable automatic inline annotations.
20
- name: Run Ruff
21
run: ruff check --output-format=github .
22
+ - name: Run Flake8
23
+ run: flake8 --max-line-length 120
0 commit comments