generated from thoth-station/template-project
-
Notifications
You must be signed in to change notification settings - Fork 25
139 lines (136 loc) · 4.64 KB
/
windows.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
on:
push:
branches:
- master
- ci-test
pull_request:
branches:
- master
name: Run Tox tests on Windows
jobs:
tox_test:
name: Tox test
steps:
- name: Checkout micropipenv
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
- name: Install tox
run: python -m pip install tox
- name: Run Tox tests
id: test
run: tox -e ${{ matrix.tox_env }}
runs-on: windows-latest
strategy:
matrix:
# This has to be manually configured because Windows images contains
# more than just the main Python and there is no easy way how to tell
# tox to ignore the non-main interpreters.
# The list can be obtained by `tox -l | .github/workflows/prep_windows_matrix.py`
include:
- python_version: "3.6"
tox_env: "py36-pip90-toml"
- python_version: "3.6"
tox_env: "py36-pip192-toml"
- python_version: "3.6"
tox_env: "py36-pip193-toml"
- python_version: "3.6"
tox_env: "py36-pip203-toml"
- python_version: "3.6"
tox_env: "py36-pip213-toml"
- python_version: "3.6"
tox_env: "py36-pip90-pytoml"
- python_version: "3.7"
tox_env: "py37-pip90-toml"
- python_version: "3.7"
tox_env: "py37-pip192-toml"
- python_version: "3.7"
tox_env: "py37-pip193-toml"
- python_version: "3.7"
tox_env: "py37-pip203-toml"
- python_version: "3.7"
tox_env: "py37-pip213-toml"
- python_version: "3.8"
tox_env: "py38-pip90-toml"
- python_version: "3.8"
tox_env: "py38-pip192-toml"
- python_version: "3.8"
tox_env: "py38-pip193-toml"
- python_version: "3.8"
tox_env: "py38-pip203-toml"
- python_version: "3.8"
tox_env: "py38-pip213-toml"
- python_version: "3.8"
tox_env: "py38-piplatest-toml"
- python_version: "3.8"
tox_env: "py38-pipgit-toml"
- python_version: "3.9"
tox_env: "py39-pip90-toml"
- python_version: "3.9"
tox_env: "py39-pip192-toml"
- python_version: "3.9"
tox_env: "py39-pip193-toml"
- python_version: "3.9"
tox_env: "py39-pip203-toml"
- python_version: "3.9"
tox_env: "py39-pip213-toml"
- python_version: "3.9"
tox_env: "py39-piplatest-toml"
- python_version: "3.9"
tox_env: "py39-pipgit-toml"
- python_version: "3.8"
tox_env: "py38-pip90-pytoml"
- python_version: "3.8"
tox_env: "py38-piplatest-pytoml"
- python_version: "3.8"
tox_env: "py38-pipgit-pytoml"
- python_version: "3.9"
tox_env: "py39-pip90-pytoml"
- python_version: "3.9"
tox_env: "py39-piplatest-pytoml"
- python_version: "3.9"
tox_env: "py39-pipgit-pytoml"
- python_version: "3.10"
tox_env: "py310-pip192-toml"
- python_version: "3.10"
tox_env: "py310-pip193-toml"
- python_version: "3.10"
tox_env: "py310-pip203-toml"
- python_version: "3.10"
tox_env: "py310-pip213-toml"
- python_version: "3.10"
tox_env: "py310-piplatest-toml"
- python_version: "3.10"
tox_env: "py310-pipgit-toml"
- python_version: "3.10"
tox_env: "py310-piplatest-pytoml"
- python_version: "3.10"
tox_env: "py310-pipgit-pytoml"
- python_version: "3.10"
tox_env: "py310-piplatest-tomli"
- python_version: "3.10"
tox_env: "py310-pipgit-tomli"
- python_version: "3.11"
tox_env: "py311-pip192"
- python_version: "3.11"
tox_env: "py311-pip193"
- python_version: "3.11"
tox_env: "py311-pip203"
- python_version: "3.11"
tox_env: "py311-pip213"
- python_version: "3.11"
tox_env: "py311-piplatest"
- python_version: "3.11"
tox_env: "py311-pipgit"
- python_version: "3.12"
tox_env: "py312-piplatest"
- python_version: "3.12"
tox_env: "py312-pipgit"
- python_version: "3.13"
tox_env: "py313-piplatest"
- python_version: "3.13"
tox_env: "py313-pipgit"
- python_version: "3.13"
tox_env: "mypy"