File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 4
4
branches : [master, main]
5
5
tags : ["*"]
6
6
pull_request :
7
+
8
+ concurrency :
9
+ # group by workflow and ref; the last slightly strange component ensures that for pull
10
+ # requests, we limit to 1 concurrent job, but for the master branch we don't
11
+ group : ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }}
12
+ # Cancel intermediate builds, but only if it is a pull request build.
13
+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
14
+
7
15
env :
8
16
PYTHON : ~
9
17
jobs :
Original file line number Diff line number Diff line change 8
8
concurrency :
9
9
# group by workflow and ref; the last slightly strange component ensures that for pull
10
10
# requests, we limit to 1 concurrent job, but for the master branch we don't
11
- group : ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
11
+ group : ${{ github.workflow }}-${{ github.ref }}-${{ ( github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }}
12
12
# Cancel intermediate builds, but only if it is a pull request build.
13
13
cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
14
14
23
23
matrix :
24
24
version :
25
25
- ' 1'
26
- - ' 1.9 '
26
+ - ' 1.10 '
27
27
os :
28
28
- ubuntu-latest
29
29
threads :
You can’t perform that action at this time.
0 commit comments