-
Notifications
You must be signed in to change notification settings - Fork 15
155 lines (133 loc) · 4.94 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: CI
on:
push:
branches:
- main
- py311
tags:
pull_request:
jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
- name: Python 3.9.xx with minimal dependencies
os: ubuntu-latest
python: 3.9.21
toxenv: py39-test
- name: Python 3.9.xx with all optional dependencies
os: ubuntu-latest
python: 3.9.21
toxenv: py39-test-alldeps
toxargs: -v --develop
toxposargs: -W error::ResourceWarning
- name: Python 3.9.xx with numpy 1.24 and full coverage
os: ubuntu-latest
python: 3.9.21
toxenv: py39-test-alldeps-numpy124-cov
- name: Python 3.9.xx with oldest supported version of all dependencies
os: ubuntu-16.04
python: 3.9.21
toxenv: py39-test-oldestdeps
- name: Python 3.10.xx with minimal dependencies
os: ubuntu-latest
python: 3.10.16
toxenv: py310-test
- name: Python 3.10.xx with all optional dependencies
os: ubuntu-latest
python: 3.10.16
toxenv: py310-test-alldeps
toxargs: -v --develop
toxposargs: -W error::ResourceWarning
- name: Python 3.10.xx with numpy 1.24 and full coverage
os: ubuntu-latest
python: 3.10.16
toxenv: py310-test-alldeps-numpy124-cov
- name: Python 3.10.xx with numpy 2.10 and full coverage
os: ubuntu-latest
python: 3.10.16
toxenv: py310-test-alldeps-numpy210-cov
- name: Python 3.10.xx with oldest supported version of all dependencies
os: ubuntu-16.04
python: 3.10.16
toxenv: py310-test-oldestdeps
- name: Python 3.11.xx with minimal dependencies
os: ubuntu-latest
python: 3.11.11
toxenv: py311-test
- name: Python 3.11.xx with all optional dependencies
os: ubuntu-latest
python: 3.11.11
toxenv: py311-test-alldeps
toxargs: -v --develop
toxposargs: -W error::ResourceWarning
- name: Python 3.11.xx with numpy 1.24 and full coverage
os: ubuntu-latest
python: 3.11.11
toxenv: py311-test-alldeps-numpy124-cov
- name: Python 3.11.xx with numpy 2.10 and full coverage
os: ubuntu-latest
python: 3.11.11
toxenv: py311-test-alldeps-numpy210-cov
- name: Python 3.11.xx with oldest supported version of all dependencies
os: ubuntu-16.04
python: 3.11.11
toxenv: py311-test-oldestdeps
steps:
- name: Checkout code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python }}
- name: Install language-pack-de and tzdata
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt-get install language-pack-de tzdata
- name: Install pyo dependencies
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt-get install portaudio19-dev libsndfile1-dev libportmidi-dev liblo-dev
- name: Install Python dependencies
run: python -m pip install --upgrade tox codecov
- 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@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
file: ./coverage.xml
allowed_failures:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- name: Code style checks
os: ubuntu-latest
python: 3.x
toxenv: codestyle
- name: (Allowed Failure) Python 3.11 with dev version of key dependencies
os: ubuntu-latest
python: 3.11
toxenv: py311-test-devdeps
steps:
- name: Checkout code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python }}
- name: Install language-pack-de and tzdata
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt-get install language-pack-de tzdata
- name: Install Python dependencies
run: python -m pip install --upgrade tox codecov
- name: Run tests
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}