-
Notifications
You must be signed in to change notification settings - Fork 2
128 lines (110 loc) · 3.03 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
name: CI
on:
pull_request:
paths-ignore:
- gallery/**
- README.md
push:
branches:
- main
workflow_dispatch:
concurrency:
# auto-cancel any in-progress job *on the same branch*
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- '3.10'
- '3.11'
- '3.12'
- 3.13-dev
include:
- os: macos-latest
python-version: '3.12'
- os: windows-latest
python-version: '3.12'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build
# installing in editable mode to allow coverage + src layout
run: |
python -m pip install --upgrade pip
python -m pip install --editable .
python -m pip install --requirement requirements/tests.txt
- name: Test
run: |
python -m pip freeze
python -m coverage run -m pytest --color=yes
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: wxc_coverage_data-${{ matrix.os }}-${{ matrix.python-version }}
path: .coverage.*
if-no-files-found: ignore
coverage:
name: Combine & check coverage
runs-on: ubuntu-latest
needs: unit-tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
# Use latest Python, so it understands all syntax.
python-version: 3.x
- run: python -m pip install --upgrade coverage[toml]
- uses: actions/download-artifact@v4
with:
pattern: wxc_coverage_data-*
merge-multiple: true
- name: Check coverage
run: |
python -m coverage combine
python -m coverage html --skip-covered --skip-empty
python -m coverage report --fail-under=95
- name: Upload HTML report if check failed.
uses: actions/upload-artifact@v4
with:
name: wxc_coverage_report
path: htmlcov
if: ${{ failure() }}
type-check:
runs-on: ubuntu-latest
name: type check
strategy:
matrix:
os:
- ubuntu-latest
python-version:
# Match minimal supported Python version
# to make sure we're not using unparseable syntax,
# and also run on the most recent version possible to make sure
# the code typechecks also there
- '3.10'
- '3.12'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install --requirement requirements/typecheck.txt
- name: Run mypy
run: mypy src/wxc