Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 6953:301f352b5d63
Only do one build at a time. Cancel older in progress builds.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 10 Sep 2022 22:50:57 -0400 |
| parents | 4eea63155cff |
| children | 22177f3ea206 |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Sat Sep 10 21:57:45 2022 -0400 +++ b/.github/workflows/ci-test.yml Sat Sep 10 22:50:57 2022 -0400 @@ -19,6 +19,10 @@ permissions: contents: read +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: test: name: CI build test
