File tree 5 files changed +36
-41
lines changed
5 files changed +36
-41
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ " name " : " Build" ,
3
+ " on " : { "pull_request": null },
4
+ " jobs " : {
5
+ " linux " : {
6
+ " runs-on " : " ubuntu-latest" ,
7
+ " strategy " : {
8
+ " fail-fast " : false,
9
+ " matrix " : {
10
+ " python " : [
11
+ " 3.6" ,
12
+ " 3.7" ,
13
+ " 3.8" ,
14
+ " 3.9" ,
15
+ ],
16
+ },
17
+ },
18
+ " steps " : [
19
+ { "uses": "actions/checkout@v2" },
20
+ {
21
+ " uses " : " actions/setup-python@v2" ,
22
+ " with " : { "python-version": "${{ matrix.python }}"},
23
+ },
24
+ { "run": "sudo apt update" },
25
+ { "run": "sudo apt install -y libkrb5-dev" },
26
+ { "run": "pip install flake8" },
27
+ { "run": "pip install -r requirements.txt" },
28
+ { "run": "python3 -m unittest" },
29
+ {
30
+ " run " : " flake8" ,
31
+ " if " : " ${{ matrix['python'] == 3.9 }}" ,
32
+ },
33
+ ],
34
+ },
35
+ },
36
+ }
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments