File tree Expand file tree Collapse file tree 2 files changed +69
-0
lines changed
Expand file tree Collapse file tree 2 files changed +69
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Check
2+
3+ on :
4+ - push
5+ - pull_request
6+
7+ jobs :
8+ build :
9+ name : ${{ matrix.tox-environment }}
10+ runs-on : ubuntu-latest
11+
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ tox-environment :
16+ - lint
17+
18+ env :
19+ TOXENV : ${{ matrix.tox-environment }}
20+
21+ steps :
22+ - uses : actions/checkout@v2
23+
24+ - name : Set up Python
25+ uses : actions/setup-python@v2
26+
27+ - name : Install dependencies
28+ run : python -m pip install tox
29+
30+ - name : Run
31+ run : tox
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ - push
5+ - pull_request
6+
7+ jobs :
8+ build :
9+ name : Python ${{ matrix.python-version }} / ${{ matrix.tox-environment }}
10+ runs-on : ubuntu-latest
11+
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ python-version :
16+ - 3.4
17+ - 3.6
18+ - pypy3
19+ tox-environment :
20+ - django11
21+ - django22
22+
23+ env :
24+ TOXENV : ${{ matrix.tox-environment }}
25+
26+ steps :
27+ - uses : actions/checkout@v2
28+
29+ - name : Set up Python ${{ matrix.python-version }}
30+ uses : actions/setup-python@v2
31+ with :
32+ python-version : ${{ matrix.python-version }}
33+
34+ - name : Install dependencies
35+ run : python -m pip install tox
36+
37+ - name : Run tests
38+ run : tox
You can’t perform that action at this time.
0 commit comments