forked from pydicom/pydicom
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 1.1 KB
/
merge.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
name: merge
on:
push:
branches:
- main
workflow_dispatch:
jobs:
tests:
strategy:
matrix:
# Do the ones not covered in PR workflow
os: [ubuntu, macos]
python-version: ["3.10"] # , "3.12" except PyPy
test-extras: [false]
upload-coverage: [false]
include:
- os: windows
python-version: "3.11"
test-extras: true
upload-coverage: true
- os: macos
python-version: "3.10"
test-extras: true
upload-coverage: false
- os: ubuntu
python-version: "pypy3.10"
test-extras: false
upload-coverage: false
exclude:
# for combo with test-extras, already includes false tests, so remove from matrix
- os: macos
python-version: "3.10"
test-extras: false
uses: ./.github/workflows/tests_wf.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
test-extras: ${{ matrix.test-extras }}
upload-coverage: ${{ matrix.upload-coverage }}