-
Notifications
You must be signed in to change notification settings - Fork 0
223 lines (190 loc) · 6.55 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
name: test
on:
push:
branches:
- main
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
env:
MINIMUM_PYTHON_VERSION: "3.10"
UV_VERSION: "0.4.18"
UV_CACHE_DIR: /tmp/.uv-cache
jobs:
coverage:
# This action runs tests for coverage collection and uploads them to codecov.io.
# This requires the secret `CODECOV_TOKEN` be set as secret on GitHub, both for
# Actions and Dependabot
name: "${{ matrix.os }} / ${{ matrix.python-version }} / coverage"
strategy:
max-parallel: 4
fail-fast: false
matrix:
os: [ubuntu]
python-version:
# remove the unused versions
- "3.10"
- "3.11"
- "3.12"
- "3.13"
runs-on: ${{ matrix.os }}-latest
env:
OS: ${{ matrix.os }}-latest
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/${{ env.UV_VERSION }}/install.sh | sh
- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Restore uv cache
uses: actions/cache@v4
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
restore-keys: |
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
uv-${{ runner.os }}
- name: Load cached venv
id: cached-venv
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/uv.lock') }}
- name: Install dependencies
if: steps.cached-venv.outputs.cache-hit != 'true'
run: uv sync --all-extras --dev
- name: Run tests for coverage
run: make test-w-coverage cov_report=xml
- name: Minimize uv cache
run: uv cache prune --ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
# directory: ./coverage
env_vars: OS,PYTHON
fail_ci_if_error: true
# files: ./coverage/coverage.xml
# flags: unittests
# name: codecov-umbrella
verbose: true
# doctests:
# # This action runs doctests for coverage collection and uploads them to codecov.io.
# # This requires the secret `CODECOV_TOKEN` be set as secret on GitHub, both for
# # Actions and Dependabot
# name: "${{ matrix.os }} / 3.10 / doctest"
# strategy:
# max-parallel: 4
# fail-fast: false
# matrix:
# os: [ubuntu]
# runs-on: ${{ matrix.os }}-latest
# env:
# OS: ${{ matrix.os }}-latest
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: true
# - name: Set up uv
# run: curl -LsSf https://astral.sh/uv/${{ env.UV_VERSION }}/install.sh | sh
# - name: Set up Python ${{ env.MINIMUM_PYTHON_VERSION }}
# id: setup-python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ env.MINIMUM_PYTHON_VERSION }}
# - name: Restore uv cache
# uses: actions/cache@v4
# with:
# path: /tmp/.uv-cache
# key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
# restore-keys: |
# uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
# uv-${{ runner.os }}
# - name: Load cached venv
# id: cached-venv
# uses: actions/cache@v4
# with:
# path: .venv
# key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/uv.lock') }}
# - name: Install dependencies
# if: steps.cached-venv.outputs.cache-hit != 'true'
# run: uv sync --all-extras --dev
# #----------------------------------------------
# # Run tests and upload coverage
# #----------------------------------------------
# - name: make doc-tests
# run: make doc-tests cov_report=xml
# - name: Minimize uv cache
# run: uv cache prune --ci
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# # directory: ./coverage
# env_vars: OS,PYTHON,TESTTYPE
# fail_ci_if_error: true
# # files: ./coverage/coverage.xml
# # flags: unittests
# # name: codecov-umbrella
# verbose: true
# env:
# PYTHON: ${{ env.MINIMUM_PYTHON_VERSION }}
# TESTTYPE: doctest
minimal:
# This action chooses the oldest version of the dependencies permitted by Cargo.toml to ensure
# that this crate is compatible with the minimal version that this crate and its dependencies
# require. This will pickup issues where this create relies on functionality that was introduced
# later than the actual version specified (e.g., when we choose just a major version, but a
# method was added after this version).
#
runs-on: ubuntu-latest
name: ubuntu / 3.10 / minimal-versions
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/${{ env.UV_VERSION }}/install.sh | sh
- name: Set up Python ${{ env.MINIMUM_PYTHON_VERSION }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ env.MINIMUM_PYTHON_VERSION }}
- name: Restore uv cache
uses: actions/cache@v4
with:
path: /tmp/.uv-cache
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
restore-keys: |
uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}
uv-${{ runner.os }}
- name: install lowest direct dependencies
run: uv sync --resolution lowest-direct --all-extras --dev
- name: make test
run: make test
- name: Minimize uv cache
run: uv cache prune --ci
# https://github.com/marketplace/actions/alls-green#why used for branch protection checks
test-check:
if: always()
needs:
- coverage
# - doctests
- minimal
runs-on: ubuntu-latest
permissions: {}
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}