File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change 4
4
- pull_request
5
5
6
6
jobs :
7
- lint-unit-and-func-tests :
8
- name : Lint, Unit, & Functional Tests
7
+ lint :
8
+ name : Lint
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Check out code
12
+ uses : actions/checkout@v2
13
+ - name : Setup Python
14
+ uses : actions/setup-python@v2
15
+ with :
16
+ python-version : 3.9
17
+ - name : Install Tox
18
+ run : pip install tox
19
+ - name : Run lint
20
+ run : tox -e lint
21
+ unit-and-func-tests :
22
+ name : Unit, & Functional Tests
9
23
runs-on : ubuntu-latest
10
24
strategy :
11
25
matrix :
19
33
python-version : ${{ matrix.python }}
20
34
- name : Install Tox
21
35
run : pip install tox
22
- - name : Run lint, unit, and functional tests
23
- run : tox
36
+ - name : Run unit & functional tests
37
+ run : tox -e unit,functional
24
38
25
39
# TODO
26
40
# integration-test:
You can’t perform that action at this time.
0 commit comments