File tree 1 file changed +64
-0
lines changed 1 file changed +64
-0
lines changed Original file line number Diff line number Diff line change 23
23
env :
24
24
TOXENV : python
25
25
26
+ qa :
27
+ runs-on : ubuntu-latest
28
+ steps :
29
+ - uses : actions/checkout@v2
30
+ - name : Setup Python
31
+ uses : actions/setup-python@v2
32
+ with :
33
+ python-version : 3.9
34
+ - name : Install tox
35
+ run : |
36
+ python -m pip install tox
37
+ - name : Run checks
38
+ run : tox
39
+ env :
40
+ TOXENV : qa
41
+
42
+ coverage :
43
+ runs-on : ubuntu-latest
44
+ steps :
45
+ - uses : actions/checkout@v2
46
+ - name : Setup Python
47
+ uses : actions/setup-python@v2
48
+ with :
49
+ python-version : 3.9
50
+ - name : Install tox
51
+ run : |
52
+ python -m pip install tox
53
+ - name : Evaluate coverage
54
+ run : tox
55
+ env :
56
+ TOXENV : cov
57
+
58
+ diffcov :
59
+ runs-on : ubuntu-latest
60
+ steps :
61
+ - uses : actions/checkout@v2
62
+ - name : Setup Python
63
+ uses : actions/setup-python@v2
64
+ with :
65
+ python-version : 3.9
66
+ - name : Install tox
67
+ run : |
68
+ python -m pip install tox
69
+ - name : Evaluate coverage
70
+ run : tox
71
+ env :
72
+ TOXENV : diffcov
73
+
74
+ docs :
75
+ runs-on : ubuntu-latest
76
+ steps :
77
+ - uses : actions/checkout@v2
78
+ - name : Setup Python
79
+ uses : actions/setup-python@v2
80
+ with :
81
+ python-version : 3.9
82
+ - name : Install tox
83
+ run : |
84
+ python -m pip install tox
85
+ - name : Build docs
86
+ run : tox
87
+ env :
88
+ TOXENV : docs
89
+
26
90
release :
27
91
needs : test
28
92
if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
You can’t perform that action at this time.
0 commit comments