File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11name : linuxbrew
22on : [push, pull_request]
33concurrency :
4- group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
4+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 linuxbrew :
88 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11name : macOS
22on : [push, pull_request]
33concurrency :
4- group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
4+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 macosx :
88 runs-on : macos-latest
Original file line number Diff line number Diff line change 11name : manylinux
22on : [push, pull_request]
33concurrency :
4- group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
4+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 manylinux :
88 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11name : sdist
22on : [push, pull_request]
33concurrency :
4- group : ${{ github.workflow }}-${{ github.ref }}
5- cancel-in-progress : true
4+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
5+ cancel-in-progress : ${{ github.ref_name != 'master' }}
66jobs :
77 sdist :
88 # Avoid Ubuntu 24.04 in sdist workflows, because it contains libxmlsec1-dev
Original file line number Diff line number Diff line change 1616 workflow_dispatch :
1717
1818concurrency :
19- group : ${{ github.workflow }}-${{ github.ref }}
20- cancel-in-progress : true
19+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
20+ cancel-in-progress : ${{ github.ref_name != 'master' }}
2121
2222permissions : {}
2323
You can’t perform that action at this time.
0 commit comments