We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948c0c0 commit f2dce5fCopy full SHA for f2dce5f
1 file changed
.github/workflows/linting.yml
@@ -0,0 +1,24 @@
1
+name: Python linting
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ python-version: [3.6, 3.7, 3.8, 3.9]
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v2
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
+ - name: Black Code Formatter
24
+ uses: lgeiger/black-action@v1.0.1
0 commit comments