File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 10
10
11
11
# Ensure redundant parallel runs don't occur in the same workflow.
12
12
# Use either PR or branch information to prevent such runs.
13
- # concurrency:
14
- # group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15
- # cancel-in-progress: true
13
+ concurrency :
14
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15
+ cancel-in-progress : true
16
16
17
17
# A workflow run is made up of one or more jobs that can run sequentially or in
18
18
# parallel
27
27
os : ['ubuntu-latest', 'windows-latest']
28
28
# The type of runner that the job will run on
29
29
runs-on : ${{ matrix.os }}
30
+ concurrency :
31
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.os }}-${{ matrix.python-version}}
32
+ cancel-in-progress : true
30
33
31
34
# Steps represent a sequence of tasks that will be executed as part of the job
32
35
steps :
You can’t perform that action at this time.
0 commit comments