From 2de6bffc321a67e029998db5ad097a0ff41c4929 Mon Sep 17 00:00:00 2001 From: chikamura Date: Mon, 23 Dec 2024 13:14:39 +0900 Subject: [PATCH 1/2] stop parallel ci test --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8abb85a..9b52bba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,9 @@ jobs: test: name: test runs-on: ubuntu-latest + concurrency: + group: test-group + cancel-in-progress: true if: > ${{ github.event_name == 'pull_request' || From 972456957392bf893cfe2c59317b14f82abdc685 Mon Sep 17 00:00:00 2001 From: chikamura Date: Mon, 23 Dec 2024 13:17:07 +0900 Subject: [PATCH 2/2] cancel-in-progress: false --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a007604..4e6d230 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest concurrency: group: test-group - cancel-in-progress: true + cancel-in-progress: false if: > ${{ github.event_name == 'pull_request' ||