Skip to content

Commit ae4d039

Browse files
committed
Adding flake8 in CI - Issue 5
1 parent 9bfc039 commit ae4d039

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/CI.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ on:
66
workflow_dispatch:
77

88
jobs:
9+
10+
flake8:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.x"
20+
21+
- name: Lint with Flake8
22+
run: |
23+
pipx run flake8
24+
925
test:
1026
runs-on: ubuntu-latest
1127

0 commit comments

Comments
 (0)