generated from thoth-station/template-project
-
Notifications
You must be signed in to change notification settings - Fork 25
84 lines (81 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
on:
push:
branches:
- master
- ci-test
pull_request:
branches:
- master
name: Run Tox tests on Linux
jobs:
tox_test:
name: Tox test
steps:
- name: Checkout micropipenv
uses: actions/checkout@v2
- name: Run Tox tests
id: test
uses: fedora-python/tox-github-action@main
with:
tox_env: ${{ matrix.tox_env }}
dnf_install: /usr/bin/make
strategy:
matrix:
tox_env: [
# This list has to be maintained manually :(
# You can get it from `tox -l | sed "s/$/,/"`
py36-pip90-toml,
py36-pip192-toml,
py36-pip193-toml,
py36-pip203-toml,
py36-pip213-toml,
py36-pip90-pytoml,
py37-pip90-toml,
py37-pip192-toml,
py37-pip193-toml,
py37-pip203-toml,
py37-pip213-toml,
py38-pip90-toml,
py38-pip192-toml,
py38-pip193-toml,
py38-pip203-toml,
py38-pip213-toml,
py38-piplatest-toml,
py38-pipgit-toml,
py39-pip90-toml,
py39-pip192-toml,
py39-pip193-toml,
py39-pip203-toml,
py39-pip213-toml,
py39-piplatest-toml,
py39-pipgit-toml,
py38-pip90-pytoml,
py38-piplatest-pytoml,
py38-pipgit-pytoml,
py39-pip90-pytoml,
py39-piplatest-pytoml,
py39-pipgit-pytoml,
py310-pip192-toml,
py310-pip193-toml,
py310-pip203-toml,
py310-pip213-toml,
py310-piplatest-toml,
py310-pipgit-toml,
py310-piplatest-pytoml,
py310-pipgit-pytoml,
py310-piplatest-tomli,
py310-pipgit-tomli,
py311-pip192,
py311-pip193,
py311-pip203,
py311-pip213,
py311-piplatest,
py311-pipgit,
py312-piplatest,
py312-pipgit,
py313-piplatest,
py313-pipgit,
mypy,
]
# Use GitHub's Linux Docker host
runs-on: ubuntu-latest