Skip to content

Commit 0367054

Browse files
committed
workflows: static-checks: Run Flake8
Signed-off-by: Loïc Minier <[email protected]>
1 parent e4b7417 commit 0367054

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/static-checks.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,20 @@ concurrency:
1919
cancel-in-progress: true
2020

2121
jobs:
22+
flake8:
23+
name: Install and run Flake8 on Python scripts
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Install flake8
27+
run: sudo apt update && sudo apt -y install flake8
28+
29+
- uses: actions/checkout@v4
30+
with:
31+
fetch-depth: 0
32+
33+
- name: Run Flake8
34+
run: flake8 scripts/*.py
35+
2236
pylint:
2337
name: Install and run Pylint on Python scripts
2438
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)