-
Notifications
You must be signed in to change notification settings - Fork 28
83 lines (73 loc) · 2.09 KB
/
ci_workflows.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
name: CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
jobs:
initial_tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
strategy:
fail-fast: true
matrix:
include:
- name: Test basics and coverage
python: "3.12"
toxenv: py312-test-cov
- name: Code style checks
python: "3.x"
toxenv: codestyle
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Python dependencies
run: python -m pip install --upgrade tox
- name: Run tests
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
comprehensive_tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
needs: initial_tests
strategy:
fail-fast: true
matrix:
include:
# doc build done on readthedocs.
# - name: Documentation build
# python: 3.x
# toxenv: build_docs
# apt_packages: graphviz
- name: Test oldest supported version
python: "3.10"
toxenv: py310-test-oldestdeps
- name: Windows
os: windows-latest
python: "3.12"
toxenv: py312-test
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install system dependencies
if: matrix.apt_packages
run: sudo apt-get install ${{ matrix.apt_packages }}
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Python dependencies
run: python -m pip install --upgrade tox ${{ matrix.pip_packages }}
- name: Run tests
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
- name: Upload coverage to codecov
if: ${{ contains(matrix.toxenv,'-cov') }}
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
verbose: true