Browse Source

fix(ci): only cancel previous in-progress workflow of the same group

pull/2288/head
Alexander 3 years ago
parent
commit
b68e76bbac
  1. 8
      .github/workflows/binary_test.yml

8
.github/workflows/binary_test.yml

@ -5,10 +5,6 @@ on:
pull_request: pull_request:
workflow_dispatch: [] workflow_dispatch: []
concurrency:
group: ${{ github.head_ref }}/binary_test
cancel-in-progress: true
jobs: jobs:
build: build:
@ -36,6 +32,10 @@ jobs:
- goarch: s390x - goarch: s390x
goos: windows goos: windows
concurrency:
group: ${{ github.head_ref }}/binary_test/${{ matrix.goos }}/${{ matrix.goarch }}
cancel-in-progress: true
steps: steps:
- name: Check out code into the Go module directory - name: Check out code into the Go module directory

Loading…
Cancel
Save