-
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (41 loc) · 1.07 KB
/
test.yaml
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
name: "🧪 Test"
on:
pull_request:
push:
branches:
- "main"
- "releases"
jobs:
test:
name:
"${{
(startswith(matrix.runner, 'ubuntu') && 'Linux')
|| (startswith(matrix.runner, 'macos') && 'macOS')
|| (startswith(matrix.runner, 'windows') && 'Windows')
}}"
strategy:
matrix:
runner:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
# These values will be applied to all runners listed above.
include:
- cpythons:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
cpython-beta: "3.14"
pypys:
- "3.9"
- "3.10"
cache-key-hash-files:
- "pyproject.toml"
- "requirements/*/*.txt"
cache-paths:
- ".mypy_cache/"
uses: "kurtmckee/github-workflows/.github/workflows/tox.yaml@2f156c58bf4ceebc623014b407f5711899e41235" # v1.0
with:
config: "${{ toJSON(matrix) }}"