-
Notifications
You must be signed in to change notification settings - Fork 3
182 lines (160 loc) · 5.21 KB
/
test.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
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
name: Code quality tests
env:
ALL_PYTHON_VERSIONS: "['3.11', '3.12']"
CACHE_VERSION: 1
on:
pull_request:
branches:
- main
permissions:
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
info:
runs-on: ubuntu-latest
name: Collect information & changes data
outputs:
run_pipeline: ${{ steps.changes.outputs.core }}
python_versions: ${{ steps.info.outputs.python_versions }}
python_cache_key: ${{ steps.generate_python_cache_key.outputs.key }}
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Filter for core changes
uses: dorny/paths-filter@v3.0.2
id: changes
with:
filters: |
core:
- ./**/*.py
- .github/**/*.yml
- pyproject.toml
- name: Generate partial Python venv restore key
id: generate_python_cache_key
run: >-
echo "key=venv-${{ env.CACHE_VERSION }}-${{
hashFiles('pyproject.toml') }}" >> $GITHUB_OUTPUT
- name: Collect additional information
id: info
run: |
echo "python_versions: ${ALL_PYTHON_VERSIONS}"
echo "python_versions=${ALL_PYTHON_VERSIONS}" >> $GITHUB_OUTPUT
create-virtualenv:
name: Setup environment
runs-on: ubuntu-latest
needs: info
timeout-minutes: 10
if: needs.info.outputs.run_pipeline == 'true'
strategy:
matrix:
python-version: ${{ fromJSON(needs.info.outputs.python_versions) }}
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore base Python virtual environment
id: cache-venv
uses: actions/cache@v4.2.0
with:
path: .venv
lookup-only: true
key: >-
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
needs.info.outputs.python_cache_key }}
- name: Install requirements
run: |
python -m pip install uv
uv venv # Create a virtual environment at .venv.
source .venv/bin/activate
uv pip install -e .'[test]'
if: steps.cache-virtualenv.outputs.cache-hit != 'true'
linter:
name: Run code linters
needs:
- create-virtualenv
- info
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ${{ fromJSON(needs.info.outputs.python_versions) }}
if: needs.info.outputs.run_pipeline == 'true'
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
with:
fetch-depth: "2"
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore full Python ${{ steps.python.outputs.python-version }} virtual environment
id: cache-venv
uses: actions/cache/restore@v4.2.0
with:
path: .venv
fail-on-cache-miss: true
key: >-
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
needs.info.outputs.python_cache_key }}
- name: Run ruff
run: |
source .venv/bin/activate
pre-commit run --hook-stage manual ruff --all-files --show-diff-on-failure
env:
RUFF_OUTPUT_FORMAT: github
- name: Run ruff-format
run: |
source .venv/bin/activate
pre-commit run --hook-stage manual ruff-format --all-files --show-diff-on-failure
env:
RUFF_OUTPUT_FORMAT: github
- name: Run mypy
run: |
source .venv/bin/activate
pre-commit run --hook-stage manual mypy --all-files --show-diff-on-failure
pytest:
name: Run test suite
continue-on-error: true
needs:
- info
- create-virtualenv
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ${{ fromJSON(needs.info.outputs.python_versions) }}
if: needs.info.outputs.run_pipeline == 'true'
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Restore full Python ${{ steps.python.outputs.python-version }} virtual environment
id: cache-venv
uses: actions/cache/restore@v4.2.0
with:
path: .venv
fail-on-cache-miss: true
key: >-
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
needs.info.outputs.python_cache_key }}
- name: Run tests
run: |
source .venv/bin/activate
pytest tests/ --cov pygleif --cov-report xml:coverage.xml
- name: Post coverage
uses: orgoro/coverage@v3
with:
coverageFile: coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}