We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7228c commit 5559ee5Copy full SHA for 5559ee5
1 file changed
.github/workflows/tests.yaml
@@ -4,8 +4,22 @@ on:
4
- pull_request
5
6
jobs:
7
- lint-unit-and-func-tests:
8
- name: Lint, Unit, & Functional Tests
+ lint:
+ 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
23
runs-on: ubuntu-latest
24
strategy:
25
matrix:
@@ -19,8 +33,8 @@ jobs:
33
python-version: ${{ matrix.python }}
34
- name: Install Tox
35
run: pip install tox
- - name: Run lint, unit, and functional tests
- run: tox
36
+ - name: Run unit & functional tests
37
+ run: tox -e unit,functional
38
39
# TODO
26
40
#integration-test:
0 commit comments