Skip to content

Commit c0da1d5

Browse files
authored
use a string rather than a boolean for safe
1 parent e927fa2 commit c0da1d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
- x86_64-windows-gnu
2525
- aarch64-macos-none
2626
- aarch64-linux-musl
27-
safe: [false]
27+
safe: ["false"]
2828
include:
2929
- target: aarch64-macos-none
30-
safe: true
30+
safe: "true"
3131
- target: x86_64-linux-musl
32-
safe: true
32+
safe: "true"
3333
steps:
3434
- run: sudo apt-get install -y ninja-build
3535
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)