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 b40c5cb commit ab333feCopy full SHA for ab333fe
.github/workflows/assess-code.yml
@@ -0,0 +1,24 @@
1
+name: Python source code assessment 🐍
2
+on: [push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ max-parallel: 4
8
+ matrix:
9
+ python-version:
10
+ - 3.7
11
+ - 3.8
12
+ - 3.9
13
+ steps:
14
+ - uses: actions/checkout@v1
15
+ - name: Set up Python ${{ matrix.python-version }}
16
+ uses: actions/setup-python@v1
17
+ with:
18
+ python-version: ${{ matrix.python-version }}
19
+ - name: Static code analysis
20
+ run: |
21
+ pip install pip==20.2.0
22
+ pip install -r requirements.txt
23
+ pip install -r requirements-dev.txt
24
+ ./run-code-analysis.sh
.travis.yml
@@ -3,7 +3,7 @@ python:
- "3.6"
- "3.7"
- "3.8"
- - "3.9-dev"
+ - "3.9"
addons:
apt:
update: true
builds.png
1.13 MB
0 commit comments