File tree Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Expand file tree Collapse file tree 2 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,23 @@ name: CI tests
2
2
3
3
on :
4
4
push :
5
- create :
5
+ paths :
6
+ - ' **'
7
+ - ' !.github/**'
8
+ - ' .github/workflows/ci.yml'
9
+ pull_request :
10
+ paths :
11
+ - ' **'
12
+ - ' !.github/**'
13
+ - ' .github/workflows/ci.yml'
14
+
15
+ concurrency :
16
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
17
+ cancel-in-progress : true
18
+
19
+ permissions :
20
+ contents : read # to fetch code (actions/checkout)
21
+
6
22
7
23
jobs :
8
24
sdist :
@@ -156,9 +172,7 @@ jobs:
156
172
- " 3.10"
157
173
- " 3.11"
158
174
- " 3.12"
159
- # Py3.13.4 currently fails to build on Windows:
160
- # https://discuss.python.org/t/heads-up-3-13-5-release-coming-soon/94535
161
- - " 3.13.5"
175
+ - " 3.13"
162
176
- " 3.13t"
163
177
- " 3.14-dev"
164
178
- " 3.14t-dev"
Original file line number Diff line number Diff line change 30
30
- setup.py
31
31
workflow_dispatch :
32
32
33
+ concurrency :
34
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
35
+ cancel-in-progress : true
36
+
33
37
permissions : {}
34
38
35
39
jobs :
You can’t perform that action at this time.
0 commit comments