From 64a19e64f1f8080849490ebcdb7323365088f724 Mon Sep 17 00:00:00 2001 From: lumin Date: Sat, 21 Dec 2024 21:58:26 +0900 Subject: [PATCH] feat(ci): add concurrency to test workflow Enhance the GitHub Actions test workflow by adding concurrency settings. --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c4dbdcf..a10dd34 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,10 @@ name: tests on: [pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: tests: runs-on: ubuntu-latest