9
9
strategy :
10
10
fail-fast : false
11
11
matrix :
12
- python : ['3.8', '3.9', '3.10', '3.11', '3.12']
12
+ python : ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
13
13
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v4
16
+ uses : actions/checkout@v5
17
17
- name : Setup python
18
- uses : actions/setup-python@v5
18
+ uses : actions/setup-python@v6
19
19
with :
20
20
python-version : ${{ matrix.python }}
21
+ allow-prereleases : true
21
22
cache : pip
22
23
cache-dependency-path : test-requirements.txt
23
24
- name : Run tests
34
35
strategy :
35
36
fail-fast : false
36
37
matrix :
37
- python : ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
38
+ python : ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
38
39
check_formatting : ['0']
39
40
extra_name : ['']
40
41
include :
43
44
extra_name : ' , check formatting'
44
45
steps :
45
46
- name : Checkout
46
- uses : actions/checkout@v4
47
+ uses : actions/checkout@v5
47
48
- name : Setup python
48
- uses : actions/setup-python@v5
49
+ uses : actions/setup-python@v6
49
50
with :
50
51
python-version : ${{ matrix.python }}
51
52
allow-prereleases : true
@@ -65,14 +66,15 @@ jobs:
65
66
strategy :
66
67
fail-fast : false
67
68
matrix :
68
- python : ['3.8', '3.9', '3.10', '3.11', '3.12']
69
+ python : ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14' ]
69
70
steps :
70
71
- name : Checkout
71
- uses : actions/checkout@v4
72
+ uses : actions/checkout@v5
72
73
- name : Setup python
73
- uses : actions/setup-python@v5
74
+ uses : actions/setup-python@v6
74
75
with :
75
76
python-version : ${{ matrix.python }}
77
+ allow-prereleases : true
76
78
cache : pip
77
79
cache-dependency-path : test-requirements.txt
78
80
- name : Run tests
0 commit comments