-
Notifications
You must be signed in to change notification settings - Fork 0
144 lines (136 loc) · 3.71 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
name: CI
on:
workflow_dispatch:
pull_request:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
black:
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
jupyter: false
version: "~=25.0"
ruff-check:
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
pre-commit:
if: ${{ always() }}
env:
COLUMNS: 120
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/[email protected]
mypy:
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Install packages
run: >-
uv sync
--all-extras
--no-default-groups
--group typing
--group test
--exact
--locked
- name: List packages
run: uv pip list
- name: Run mypy
run: uv run --no-sync mypy
test:
if: ${{ always() }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
resolution:
- "highest"
os:
- ubuntu-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy3.10"
- "pypy3.11"
include:
# test with lowest resolution
- resolution: "lowest"
os: ubuntu-latest
python-version: "3.9"
- resolution: "lowest"
os: ubuntu-latest
python-version: "3.13"
# test on os
- resolution: "locked"
os: ubuntu-latest
python-version: "3.9"
- resolution: "locked"
os: macos-latest
python-version: "3.9"
- resolution: "locked"
os: windows-latest
python-version: "3.9"
# test on prerelease
- resolution: "prerelease"
os: ubuntu-latest
python-version: "3.13"
- resolution: "prerelease"
os: ubuntu-latest
python-version: "3.14"
continue-on-error: ${{ matrix.resolution == 'prerelease' || matrix.python-version == 'pypy3.11' }}
name: test-${{ matrix.python-version }}-${{ matrix.resolution }}-${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
cache-suffix: ${{ matrix.resolution }}
- name: Install packages
run: >-
uv sync
--all-extras
--no-default-groups
--group test
--exact
${{ matrix.resolution == 'locked' && '--locked' ||
matrix.resolution == 'lowest' && '--upgrade --resolution lowest-direct' ||
matrix.resolution == 'highest' && '--upgrade --resolution highest' ||
matrix.resolution == 'prerelease' && '--upgrade --resolution highest --prerelease allow' ||
'--NON_RECOGNIZED_RESOLUTION'
}}
- name: List packages
run: uv pip list
- name: Run tests
run: uv run --no-sync pytest
pylint:
if: ${{ always() }}
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Install packages
run: >-
uv sync
--all-extras
--no-default-groups
--exact
--locked
- name: List packages
run: uv pip list
- name: Run Pylint
run: uv run --no-sync --with pylint pylint src