Skip to content

Commit 0f5d489

Browse files
committed
test
1 parent c07cb77 commit 0f5d489

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- "*"
1010
pull_request:
1111

12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
1216
env:
1317
RUSTFLAGS: "--cfg uuid_unstable"
1418

@@ -163,7 +167,7 @@ jobs:
163167

164168
windows:
165169
name: "Windows: ${{ matrix.platform.target }}"
166-
runs-on: '${{ matrix.platform.os }}'
170+
runs-on: "${{ matrix.platform.os }}"
167171
strategy:
168172
matrix:
169173
platform:
@@ -248,7 +252,17 @@ jobs:
248252
name: Release
249253
runs-on: ubuntu-latest
250254
if: "startsWith(github.ref, 'refs/tags/')"
251-
needs: [lint, linux, linux-cross, musllinux, musllinux-cross, windows, macos, sdist]
255+
needs:
256+
[
257+
lint,
258+
linux,
259+
linux-cross,
260+
musllinux,
261+
musllinux-cross,
262+
windows,
263+
macos,
264+
sdist,
265+
]
252266
steps:
253267
- uses: actions/download-artifact@v4.1.8
254268
with:

0 commit comments

Comments
 (0)