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.
1 parent 482082f commit 7c329cdCopy full SHA for 7c329cd
.github/workflows/flake8.yml
@@ -0,0 +1,27 @@
1
+name: Flake8
2
+
3
+on:
4
+ pull_request
5
6
+jobs:
7
+ flake8:
8
+ strategy:
9
+ matrix:
10
+ os: [ubuntu-latest]
11
+ python-version: ['3.6']
12
13
+ runs-on: ${{ matrix.os }}
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - name: Set up Python ${{ matrix.python-version }}
18
+ uses: actions/setup-python@v3
19
+ with:
20
+ python-version: ${{ matrix.python-version }}
21
+ - name: Install flake8
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ python -m pip install flake8
25
+ - name: Run flake8
26
27
+ python -m flake8
0 commit comments