We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent def9580 commit 24b8a73Copy full SHA for 24b8a73
.github/workflows/run_tests_and_hooks.yml
@@ -17,7 +17,7 @@ jobs:
17
- uses: actions/setup-python@v5
18
- uses: pre-commit/[email protected]
19
20
- run_tests_in_containers:
+ test_on_old_Pythons:
21
strategy:
22
fail-fast: false
23
matrix:
@@ -27,11 +27,6 @@ jobs:
27
"3.6",
28
"3.7",
29
"3.8",
30
- "3.9",
31
- "3.10",
32
- "3.11",
33
- "3.12",
34
- "3.13.0a2",
35
]
36
37
runs-on: ubuntu-latest
@@ -55,13 +50,17 @@ jobs:
55
50
"3.11",
56
51
"3.12",
57
52
"3.13.0-rc.2",
58
- "3.14.0-alpha.0"
59
53
60
54
os: [
61
- "macos-12",
+ "macos-latest",
+ "macos-latest-large",
+ "ubuntu-latest",
62
"ubuntu-24.04",
63
- "windows-2022",
+ "windows-latest",
64
+ include:
+ - os: ubuntu-24.04
+ python-version: "3.14.0-alpha.0"
65
66
runs-on: ${{ matrix.os }}
67
steps:
0 commit comments