-
Notifications
You must be signed in to change notification settings - Fork 3
228 lines (194 loc) · 6.35 KB
/
ci.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
224
225
226
227
228
# Copyright (C) 2024 Roberto Rossini <roberros@uio.no>
#
# SPDX-License-Identifier: MIT
name: CI
on:
push:
branches: [main]
paths:
- ".github/workflows/cache-test-datasets.yml"
- ".github/workflows/ci.yml"
- "src/**"
- "test/**"
- ".gitignore"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/cache-test-datasets.yml"
- ".github/workflows/ci.yml"
- "src/**"
- "test/**"
- ".gitignore"
- "pyproject.toml"
# https://stackoverflow.com/a/72408109
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
matrix-factory:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-result.outputs.result }}
steps:
- name: Generate matrix
uses: actions/github-script@v7
id: set-result
with:
script: |
// Documentation
// https://docs.github.com/en/actions/learn-github-actions/contexts#fromjson
// https://github.com/actions/runner/issues/982#issuecomment-809360765
const platforms = ["windows-latest", "macos-latest", "ubuntu-latest"]
var python_versions = ["3.9", "3.13"]
if ("${{github.event_name}}" != "pull_request") {
python_versions = python_versions.concat(["3.10", "3.11", "3.12"])
}
var includes = []
for (const plat of platforms) {
for (const ver of python_versions) {
includes.push({os: plat, python_version: ver})
}
}
return { include: includes }
cache-test-datasets:
name: Cache test datasets
uses: paulsengroup/StripePy/.github/workflows/cache-test-datasets.yml@main
ci:
name: CI
needs: [cache-test-datasets, matrix-factory]
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.matrix-factory.outputs.matrix) }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install package (Unix)
if: runner.os != 'Windows'
run: |
python -m venv venv
python -m venv venv-core
venv/bin/pip install '.[all,test]'
venv-core/bin/pip install '.' pytest pytest-cov
echo "STRIPEPY_ROOT=venv/bin" >> "$GITHUB_ENV"
echo "STRIPEPY_CORE_ROOT=venv-core/bin" >> "$GITHUB_ENV"
- name: Install package (Windows)
if: runner.os == 'Windows'
run: |
python -m venv venv
python -m venv venv-core
venv/Scripts/pip install '.[all,test]'
venv-core/Scripts/pip install '.' pytest pytest-cov
echo "STRIPEPY_ROOT=venv/Scripts" >> "$GITHUB_ENV"
echo "STRIPEPY_CORE_ROOT=venv-core/Scripts" >> "$GITHUB_ENV"
- name: Run simple CLI tests
run: |
"$STRIPEPY_ROOT/stripepy" --help
"$STRIPEPY_ROOT/stripepy" --version
- name: Run simple CLI tests (core)
run: |
"$STRIPEPY_CORE_ROOT/stripepy" --help
"$STRIPEPY_CORE_ROOT/stripepy" --version
- name: Restore test dataset
uses: actions/cache/restore@v4
with:
key: ${{ needs.cache-test-datasets.outputs.cache-key }}
path: test/data/
fail-on-cache-miss: true
enableCrossOsArchive: true
- name: Run unit tests
run: |
"$STRIPEPY_ROOT/python" -m pytest \
--cov=stripepy \
--verbose \
--cov-report=xml \
--cov-report=term \
test/ \
-m unit
- name: Upload unit test coverage report to Codecov
uses: codecov/codecov-action@v5
with:
flags: "tests | unit | python-${{ matrix.python_version }}"
disable_search: true
files: coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Run unit tests (core)
run: |
rm -f coverage.xml
"$STRIPEPY_CORE_ROOT/python" -m pytest \
--cov=stripepy \
--verbose \
--cov-report=xml \
--cov-report=term \
test/ \
-m unit
- name: Upload unit test coverage report to Codecov (core)
uses: codecov/codecov-action@v5
with:
flags: "tests | unit | python-${{ matrix.python_version }} | core"
disable_search: true
files: coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Run integration tests
run: |
rm -f coverage.xml
"$STRIPEPY_ROOT/python" -m pytest \
--cov=stripepy \
--verbose \
--cov-report=xml \
--cov-report=term \
test/ \
-m end2end
- name: Upload end2end test coverage report to Codecov
uses: codecov/codecov-action@v5
with:
flags: "tests | integration | python-${{ matrix.python_version }}"
disable_search: true
files: coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Run integration tests (core)
run: |
rm -f coverage.xml
"$STRIPEPY_CORE_ROOT/python" -m pytest \
--cov=stripepy \
--verbose \
--cov-report=xml \
--cov-report=term \
test/ \
-m end2end
- name: Upload end2end test coverage report to Codecov (core)
uses: codecov/codecov-action@v5
with:
flags: "tests | integration | python-${{ matrix.python_version }} | core"
disable_search: true
files: coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
ci-status-check:
name: Status Check (CI)
if: ${{ always() }}
runs-on: ubuntu-latest
needs:
- ci
steps:
- name: Collect job results
if: needs.ci.result != 'success'
run: exit 1