Skip to content

Commit e1349c2

Browse files
committed
fix(ci): serialize BigQuery test runs to prevent table race condition
Two Main workflow runs fire simultaneously on release (tag + branch push for the same commit). Both setup-unit.sh/cleanup-unit.sh touch shared BQ tables, causing 404 errors when one run's cleanup races the other's tests.
1 parent 0df6a8b commit e1349c2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ on:
3333
type: string
3434
default: ''
3535

36+
concurrency:
37+
group: bigquery-unit-tests
38+
cancel-in-progress: false
39+
3640
permissions:
3741
contents: write
3842
checks: write

0 commit comments

Comments
 (0)