-
-
Notifications
You must be signed in to change notification settings - Fork 7
134 lines (112 loc) · 2.98 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
name: CI
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
lint-and-typecheck:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: markdownlint
uses: DavidAnson/markdownlint-cli2-action@v17
with:
config: ".markdownlint.yaml"
globs: "**/*.md"
- run: |
pipx install poetry poethepoet
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: poetry
- name: install
run: poetry install
- name: lint
run: poe lint --output-format=github
- name: typetest
run: poe typetest
- name: verifytypes
run: poe verifytypes
- name: typecheck (partial)
run: |
targets=(
"__init__.pyi"
"cluster"
"constants"
"datasets"
"integrate"
"io"
"linalg"
"misc"
"special"
"stats/distributions.pyi"
"version.pyi"
)
for target in "${targets[@]}"; do
poe mypy $target
poe pyright $target
done
stubtest:
needs: lint-and-typecheck
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
module: [
# "scipy._lib",
"scipy.cluster",
"scipy.constants",
"scipy.datasets",
"scipy.fft",
"scipy.fftpack",
"scipy.integrate",
# "scipy.interpolate",
"scipy.io",
"scipy.linalg",
"scipy.misc",
# "scipy.ndimage",
"scipy.odr",
"scipy.optimize",
# "scipy.signal",
# "scipy.sparse",
# "scipy.spatial",
"scipy.special",
# "scipy.stats",
"scipy.stats.contingency scipy.stats.distributions",
"scipy.version"
]
steps:
- uses: actions/checkout@v4
- run: pipx install poetry poethepoet
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: poetry
- name: install
run: poetry install
- name: Run stubtest for ${{ matrix.module }}
run: poe stubtest ${{ matrix.module }} -- --ignore-unused-allowlist
stubtest-all:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx install poetry poethepoet
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: poetry
- name: install
run: poetry install
- name: Run stubtest (ignored)
run: poe stubtest -- --concise
continue-on-error: true