We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10a928b + ffce706 commit cbc2b33Copy full SHA for cbc2b33
.github/workflows/lint.yml
@@ -16,10 +16,5 @@ jobs:
16
uses: actions/setup-python@v1
17
with:
18
python-version: ${{ matrix.python-version }}
19
- - name: Install dependencies
20
- run: |
21
- python -m pip install --upgrade pip
22
- pip install pyflakes
23
- - name: Lint with pyfalkes
24
25
- pyflakes .
+ - name: Run pre-commit hook
+ uses: pre-commit/action@v2.0.3
.pre-commit-config.yaml
@@ -0,0 +1,6 @@
1
+repos:
2
+- repo: https://github.com/pycqa/flake8
3
+ rev: '4.0.1'
4
+ hooks:
5
+ - id: flake8
6
+ args: [--select, F]
0 commit comments