Skip to content

Commit ab333fe

Browse files
committed
Create github actions
1 parent b40c5cb commit ab333fe

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

.github/workflows/assess-code.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ python:
33
- "3.6"
44
- "3.7"
55
- "3.8"
6-
- "3.9-dev"
6+
- "3.9"
77
addons:
88
apt:
99
update: true

builds.png

1.13 MB
Loading

0 commit comments

Comments
 (0)