-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (45 loc) · 1.07 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
name: test
# TODO: add coverage + coveralls?
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests-on-linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v4
- name: Setup python${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python }}"
- name: Get tox env name
run: |
TOXENV=py${{ matrix.python }}
TOXENV=${TOXENV//.}
echo TOXENV=${TOXENV} >> $GITHUB_ENV
- run: python -m pip install tox
- run: tox -m ${{ env.TOXENV }}
env:
FORCE_COLOR: 1
test-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: python -m pip install tox
- run: tox -m readme
env:
FORCE_COLOR: 1