We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eceb8cb commit ddf81a8Copy full SHA for ddf81a8
1 file changed
.github/workflows/tests.yml
@@ -47,14 +47,16 @@ jobs:
47
48
- name: Set up Python 3.10
49
uses: actions/setup-python@main
50
-
51
- - name: Run Flake8
52
- uses: julianwachholz/flake8-action@v2
53
with:
54
- checkName: flake8
55
- config: flake8.ini
56
- env:
57
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ python-version: "3.10"
+
+ - name: Setup flake8 annotations
+ uses: rbialon/flake8-annotations@v1.1
+ - name: Lint with flake8
+ run: |
58
+ pip install flake8
59
+ flake8 setup.py dpath/ tests/
60
61
# Tests job
62
tests:
0 commit comments