-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (68 loc) · 1.86 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
backward-compatible:
runs-on: ubuntu-20.04
strategy:
max-parallel: 2
matrix:
include:
- python-version: "3.6"
toxenv: py36-django{1.10,1.11,2.0,2.1,2.2,3.0}
- python-version: "3.7"
toxenv: py37-django{2.0,2.1,2.2,3.0}
- python-version: "3.8"
toxenv: py38-django{2.2,3.0,3.1,3.2},flake8
- python-version: "3.9"
toxenv: py39-django{2.2,3.0,3.1,3.2}
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install "tox<4"
- name: Checkout
uses: actions/checkout@v3
- name: Run Tests
env:
TOXENV: ${{ matrix.toxenv }}
run: |
tox
last-versions:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
include:
- python-version: "3.8"
toxenv: py38-django{3.2,4.0,4.1,4.2}
- python-version: "3.9"
toxenv: py39-django{3.2,4.0,4.1,4.2}
- python-version: "3.10"
toxenv: py310-django{3.2,4.0,4.1,4.2}
- python-version: "3.11"
toxenv: py311-django{3.2,4.0,4.1,4.2}
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install "tox<4"
- name: Checkout
uses: actions/checkout@v3
- name: Run Tests
env:
TOXENV: ${{ matrix.toxenv }}
run: |
tox