-
Notifications
You must be signed in to change notification settings - Fork 62
45 lines (40 loc) · 992 Bytes
/
ci.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
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
versions:
- python: 3.8
toxenv: py38-3.2.X
- python: 3.8
toxenv: py38-4.0.X
- python: 3.8
toxenv: py38-4.2.X
- python: 3.9
toxenv: py39-3.2.X
- python: 3.9
toxenv: py39-4.0.X
- python: 3.9
toxenv: py39-4.2.X
- python: "3.10"
toxenv: py310-3.2.X
- python: "3.10"
toxenv: py310-4.0.X
- python: "3.10"
toxenv: py310-4.2.X
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.versions.python }}
- run: |
pip install tox
python setup.py install_egg_info
- run: tox -e ${{ matrix.versions.toxenv }}