Skip to content

Commit 7143b74

Browse files
fix(ci): quote negated YAML expression to avoid tag parse error
Bare `!contains(...)` is interpreted as a YAML tag. Wrap in `\${{ }}` to force expression evaluation. Co-authored-by: Claude <noreply@anthropic.com>
1 parent 20ccb59 commit 7143b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rust-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
just profile=ci run-all-examples
136136
137137
- name: Run unit tests only
138-
if: !contains(matrix.os, 'linux') && !contains(matrix.os, 'ubuntu')
138+
if: ${{ !contains(matrix.os, 'linux') && !contains(matrix.os, 'ubuntu') }}
139139
run: |
140140
cargo test --lib --profile ci
141141

0 commit comments

Comments
 (0)