-
Notifications
You must be signed in to change notification settings - Fork 5
54 lines (50 loc) · 1.33 KB
/
run-tests.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
name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
# Test the oldest and newest configuration on Mac and Windows
- os: macos-latest
python-version: 3.9
toxenv: py39
- os: macos-latest
python-version: "3.11"
toxenv: py311
# Test all configurations on Linux
- os: ubuntu-latest
python-version: 3.9
toxenv: py39
- os: ubuntu-latest
python-version: "3.10"
toxenv: py310
- os: ubuntu-latest
python-version: "3.11"
toxenv: py311
# Docs
- os: ubuntu-latest
python-version: "3.11"
toxenv: build_docs
# Code style checks
- os: ubuntu-latest
python-version: "3.11"
toxenv: codestyle
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade tox codecov
- name: Run tox
run: python -m tox -e ${{ matrix.toxenv }}
- name: Report coverage
run: codecov