this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

CI: add concurrency control

+6
+6
.github/workflows/golang.yml
··· 1 1 name: golang 2 + 2 3 on: 3 4 pull_request: 4 5 push: 5 6 branches: 6 7 - main 8 + 9 + concurrency: 10 + group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' 11 + cancel-in-progress: true 12 + 7 13 jobs: 8 14 build-and-test: 9 15 runs-on: ubuntu-latest