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 b65930f + 266dcef commit 19626bfCopy full SHA for 19626bf
.github/workflows/flake8.yml
@@ -0,0 +1,19 @@
1
+name: Python Lint
2
+
3
+on: [pull_request, push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v1
11
+ - name: Set up Python
12
+ uses: actions/setup-python@v1
13
+ with:
14
+ python-version: 3.6
15
+ - name: flake8
16
+ run: |
17
+ python -m pip install --upgrade pip
18
+ pip install flake8
19
+ flake8 usr/cmd/connstat --show-source --statistics
0 commit comments