-
-
Notifications
You must be signed in to change notification settings - Fork 15
69 lines (63 loc) · 1.74 KB
/
main.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
name: tox
on:
push:
pull_request:
jobs:
setup:
runs-on: ubuntu-latest
timeout-minutes: 1
outputs:
tox-envs: ${{ steps.set-matrix.outputs.tox-envs }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: python -m pip install --upgrade tox
- id: set-matrix
run: |
echo tox-envs=$(tox -l | grep py | jq -R -s -c 'split("\n") | map(select(length > 0))') >> $GITHUB_OUTPUT
build:
needs: setup
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
tox-env: ${{ fromJson(needs.setup.outputs.tox-envs) }}
steps:
- run: |
PY=${{ matrix.tox-env }}
PY=${PY//-django*/}
PY=${PY//py3/3.}
echo "PY=$PY" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PY }}
cache: 'pip'
- run: python -m pip install --upgrade tox
- run: tox --skip-missing-interpreters -e ${{ matrix.tox-env }}
docs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: python -m pip install --upgrade tox
- run: tox --skip-missing-interpreters -e docs
flake8:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: python -m pip install --upgrade tox
- run: tox --skip-missing-interpreters -e flake8