-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (39 loc) · 1.03 KB
/
test.yaml
File metadata and controls
44 lines (39 loc) · 1.03 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
name: "🧪 Test"
on:
pull_request: null
push:
branches:
- "main"
jobs:
test:
name:
"${{
(startswith(matrix.runner, 'ubuntu') && 'Linux')
|| (startswith(matrix.runner, 'macos') && 'macOS')
|| (startswith(matrix.runner, 'windows') && 'Windows')
}}"
strategy:
fail-fast: false
matrix:
runner:
- "ubuntu-24.04"
- "macos-15"
- "windows-2025"
# These values will be applied to all runners listed above.
include:
- cpythons:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
tox-skip-environments:
- "coverage-html"
cache-key-hash-files:
- "pyproject.toml"
- "requirements/*/*.txt"
cache-paths:
- ".mypy_cache/"
uses: "globus/workflows/.github/workflows/tox.yaml@9cb0a9d3c117062037aefaaa816116e9db1f241f" # v1.4
with:
config: "${{ toJSON(matrix) }}"