We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f3c4a0 commit 15e4260Copy full SHA for 15e4260
1 file changed
.github/workflows/Test.yml
@@ -38,13 +38,17 @@ jobs:
38
- name: Install dependencies
39
run: |
40
python -m pip install --upgrade pip
41
- pip install . pytest pytest-md pytest-emoji
+ pip install . pytest pytest-md pytest-emoji flake8
42
43
- name: Set timezone
44
uses: szenius/set-timezone@v2.0
45
with:
46
timezoneLinux: 'Europe/Berlin'
47
48
+ - name: Lint with flake8
49
+ run: |
50
+ flake8 . --count --statistics
51
+
52
- name: Run pytest
53
uses: pavelzw/pytest-action@v2
54
0 commit comments