Skip to content

Commit 4b78f93

Browse files
committed
fix workfow concurrency
1 parent a654bcc commit 4b78f93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ env:
1717
jobs:
1818
lint:
1919
runs-on: ubuntu-latest
20-
concurrency:
21-
group: tests-${{ github.workflow }}-${{ github.event.number || github.ref }}
22-
cancel-in-progress: true
2320
permissions:
2421
id-token: write
2522
contents: read
@@ -43,6 +40,9 @@ jobs:
4340

4441
test:
4542
runs-on: ${{ matrix.os }}
43+
concurrency:
44+
group: ${{ matrix.os }}-${{ github.workflow }}-${{ github.event.number || github.ref }}
45+
cancel-in-progress: true
4646
strategy:
4747
matrix:
4848
os: [ubuntu-latest, windows-latest]

0 commit comments

Comments
 (0)