We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca9eef commit af026abCopy full SHA for af026ab
1 file changed
.github/workflows/ci.yml
@@ -3,6 +3,25 @@ name: build
3
on: [push, pull_request]
4
5
jobs:
6
+ cs:
7
+ name: Coding style checks
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Set up Python 3.8
12
+ uses: actions/setup-python@v1
13
+ with:
14
+ python-version: '3.8'
15
+ - name: Bootstrap environment
16
+ run: |
17
+ sudo apt update
18
+ sudo apt install python3-venv make
19
+ python -m pip install --upgrade pip
20
+ make dev
21
+ - name: Lint
22
23
+ make cs
24
+
25
test:
26
name: Test with python ${{ matrix.python-version }}
27
runs-on: ubuntu-latest
@@ -22,9 +41,6 @@ jobs:
41
sudo apt install python3-venv make
42
python -m pip install --upgrade pip
43
make dev
- - name: Lint
- run: |
- make cs
28
44
- name: Test
29
45
run: |
30
46
make cov
0 commit comments