We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a4a05c commit 7668cf1Copy full SHA for 7668cf1
1 file changed
.github/workflows/lint-pep8radius.yml
@@ -0,0 +1,23 @@
1
+name: Lint with pep8radius
2
+on: [pull_request]
3
+
4
+jobs:
5
+ run-linter:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: checkout repository
9
+ uses: actions/checkout@v2
10
+ with:
11
+ fetch-depth: 0
12
+ - name: setup python
13
+ uses: actions/setup-python@v1
14
15
+ python-version: 3.7
16
+ - name: install pep8radius
17
+ run: pip install --upgrade git+https://github.com/hayd/pep8radius.git
18
+ - name: run pep8radius
19
+ run: pep8radius 46ba139a --docformatter
20
+ - name: run pep8radius 2
21
+ run: pep8radius formattings --docformatter
22
+ - name: run pep8radius 3
23
+ run: pep8radius master --docformatter
0 commit comments