-
Notifications
You must be signed in to change notification settings - Fork 56
88 lines (84 loc) · 2.32 KB
/
ci_tests.yaml
File metadata and controls
88 lines (84 loc) · 2.32 KB
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
# This workflow runs tests on pull requests.
name: tests
on:
workflow_call:
# Keep the schedule to maintain daily runs
schedule:
- cron: '0 0 * * *'
permissions:
contents: read
jobs:
tests:
runs-on: ${{ matrix.platform.os }}
strategy:
fail-fast: true
matrix:
platform:
- os: ubuntu-latest
architecture: x64
- os: windows-latest
architecture: x64
# x86 builds are only meaningful for Windows
- os: windows-latest
architecture: x86
- os: macos-latest
architecture: x64
python:
- 3.8
- 3.9
- "3.10"
- "3.11"
- "3.12"
# - 3.x 3.13 does not have 'pipes' and maybe other necessary things
category:
- local-slow
exclude:
# Python < 3.11 is broken on macOS runners due to missing libintl dependency
# See: https://github.com/actions/setup-python/issues/875
- platform:
os: macos-latest
python: 3.8
- platform:
os: macos-latest
python: 3.9
- platform:
os: macos-latest
python: "3.10"
# These require credentials.
# Enable them once we sort how to provide them.
# - integ-slow
# - examples
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.platform.architecture }}
- run: |
python -m pip install --upgrade pip
pip install --upgrade -r dev_requirements/ci-requirements.txt
- name: run test
env:
TOXENV: ${{ matrix.category }}
run: tox -- -vv
upstream-py311:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
category:
- nocmk
- sourcebuildcheck
- test-upstream-requirements-py311
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: |
python -m pip install --upgrade pip
pip install --upgrade -r dev_requirements/ci-requirements.txt
- name: run test
env:
TOXENV: ${{ matrix.category }}
run: tox -- -vv