-
Notifications
You must be signed in to change notification settings - Fork 4
183 lines (153 loc) · 5.74 KB
/
test.yaml
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
name: Test
on:
push:
branches:
- main
- 'release/*'
pull_request:
branches:
- main
- 'release/*'
jobs:
wait-on-wheel:
name: Wait for wheel
runs-on: ubuntu-latest
steps:
- name: Wait on build.yaml to build the wheel
uses: lewagon/wait-on-check-action@v1.3.1
with:
# When triggered on a pull request, github.sha is a temporary merge commit for the PR. The wait
# action must wait on the SHA of the commit that triggered the workflow, which is the HEAD of the
# PR branch. https://github.com/lewagon/wait-on-check-action/issues/25#issuecomment-784773361
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
# NOTE: Fake ternary operator, see https://github.com/actions/runner/issues/409
repo-token: ${{ secrets.GITHUB_TOKEN }}
check-name: 'Wheel'
allowed-conclusions: success
wait-interval: 10
test-coverage:
name: Coverage
needs: wait-on-wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Upgrade pip
run: python3 -m pip install --upgrade pip
- name: Download wheel artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: build.yaml
workflow_conclusion: success
commit: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
# NOTE: Fake ternary operator, see https://github.com/actions/runner/issues/409
# This is needed because Windows terminal cannot expand `pip install sdr-*.whl`
- name: Get wheel file name
uses: tj-actions/glob@v15
id: glob
with:
files: sdr-*.whl
working-directory: dist/
- name: Install the dev dependencies
run: python3 -m pip install -r requirements-dev.txt
- name: Install the `sdr` package wheel with upgraded dependencies
run: python3 -m pip install --upgrade dist/${{ steps.glob.outputs.paths }}
- name: Test with pytest
run: python3 -m pytest -n auto --cov=sdr --cov-report=xml tests/
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
version: v0.7.3
fail_ci_if_error: false
verbose: true
# test-min:
# name: Min
# needs: wait-on-wheel
# if: ${{ github.event_name == 'pull_request' }}
# strategy:
# matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
# python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Upgrade pip
# run: python3 -m pip install --upgrade pip
# - name: Download wheel artifact
# uses: dawidd6/action-download-artifact@v2
# with:
# workflow: build.yaml
# workflow_conclusion: success
# commit: ${{github.event.pull_request.head.sha}}
# # This is needed because Windows terminal cannot expand `pip install sdr-*.whl`
# - name: Get wheel file name
# uses: tj-actions/glob@v15
# id: glob
# with:
# files: sdr-*.whl
# working-directory: dist/
# - name: Install the dev dependencies
# run: python3 -m pip install -r requirements-dev.txt
# - name: Install minimum package dependencies
# run: python3 -m pip install -r requirements-min.txt
# - name: Install the `sdr` package wheel with minimum dependencies
# run: python3 -m pip install dist/${{ steps.glob.outputs.paths }}
# - name: Test with pytest
# run: python3 -m pytest -n auto tests/
# - name: Upload coverage report
# uses: codecov/codecov-action@v3
# with:
# version: v0.7.3
# fail_ci_if_error: false
# verbose: true
test-latest:
name: Latest
needs: wait-on-wheel
if: ${{ github.event_name == 'pull_request' }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python3 -m pip install --upgrade pip
- name: Download wheel artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: build.yaml
workflow_conclusion: success
commit: ${{github.event.pull_request.head.sha}}
# This is needed because Windows terminal cannot expand `pip install sdr-*.whl`
- name: Get wheel file name
uses: tj-actions/glob@v15
id: glob
with:
files: sdr-*.whl
working-directory: dist/
- name: Install the dev dependencies
run: python3 -m pip install -r requirements-dev.txt
- name: Install the `sdr` package wheel with upgraded dependencies
run: python3 -m pip install --upgrade dist/${{ steps.glob.outputs.paths }}
- name: Test with pytest
run: python3 -m pytest -n auto tests/
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
version: v0.7.3
fail_ci_if_error: false
verbose: true