-
Notifications
You must be signed in to change notification settings - Fork 0
164 lines (132 loc) · 4.2 KB
/
tests.yml
File metadata and controls
164 lines (132 loc) · 4.2 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
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
name: ci
on:
push:
pull_request:
jobs:
qa:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install workspace dependencies
run: uv sync --all-packages --all-extras --group dev
- name: Print Python versions
run: |
python -V
uv run python -V
uv run pytest --version
- name: Lint with ruff check
run: uv run ruff check .
- name: Format with ruff format
run: uv run ruff format . --check
- name: Type check with mypy
run: uv run mypy .
- name: Validate package runtime versions
if: matrix.python-version == '3.14'
run: uv run python scripts/ci/package_tools.py check-versions
- name: Test with pytest
if: matrix.python-version != '3.14'
run: uv run pytest
- name: Test with pytest and coverage
if: matrix.python-version == '3.14'
run: uv run pytest --cov=./ --cov-report=xml
- uses: codecov/codecov-action@v6
if: matrix.python-version == '3.14'
with:
token: ${{ secrets.CODECOV_TOKEN }}
docs:
runs-on: ubuntu-latest
needs: qa
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install workspace dependencies
run: uv sync --all-packages --all-extras --group dev
- name: Build documentation with warnings as errors
run: uv run sphinx-build -W -b dirhtml docs docs/_build/html
packages:
runs-on: ubuntu-latest
needs: qa
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install workspace dependencies
run: uv sync --all-packages --all-extras --group dev
- name: Validate package runtime versions
run: uv run python scripts/ci/package_tools.py check-versions
- name: Build all workspace packages
run: uv build --all-packages --out-dir dist --clear
- name: Validate distributions with twine
run: uvx twine check dist/*
- name: Upload package distributions
uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
smoke:
runs-on: ubuntu-latest
needs: packages
strategy:
fail-fast: false
matrix:
target:
- root-install
- gp-sphinx
- sphinx-gp-theme
- sphinx-fonts
- sphinx-autodoc-argparse
- sphinx-autodoc-docutils
- sphinx-autodoc-sphinx
- sphinx-autodoc-pytest-fixtures
- sphinx-autodoc-api-style
- sphinx-autodoc-fastmcp
- sphinx-autodoc-typehints-gp
- sphinx-ux-badges
- sphinx-ux-autodoc-layout
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Download package distributions
if: matrix.target != 'root-install'
uses: actions/download-artifact@v8
with:
name: dist
path: dist
- name: Smoke test root bootstrap install
if: matrix.target == 'root-install'
run: python scripts/ci/package_tools.py smoke root-install
- name: Smoke test built package artifact
if: matrix.target != 'root-install'
run: python scripts/ci/package_tools.py smoke "${{ matrix.target }}" --dist-dir dist