Skip to content

Commit 37480e5

Browse files
committed
ci: fix workflow yaml parsing for test selector run commands
1 parent 71a3f1a commit 37480e5

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,12 @@ jobs:
7373
uses: Swatinem/rust-cache@v2
7474

7575
- name: Run docs snippet parse conformance
76-
run: RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests docs_conformance:: -- --nocapture
76+
run: |
77+
RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests docs_conformance:: -- --nocapture
7778
7879
- name: Run examples parse regression suite
79-
run: RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests examples_regression:: -- --nocapture
80+
run: |
81+
RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests examples_regression:: -- --nocapture
8082
8183
type-lowering-conformance:
8284
name: type + lowering conformance
@@ -92,10 +94,12 @@ jobs:
9294
uses: Swatinem/rust-cache@v2
9395

9496
- name: Run Grammar2 typed parsing conformance
95-
run: RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests grammar2_parsing:: -- --nocapture
97+
run: |
98+
RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests grammar2_parsing:: -- --nocapture
9699
97100
- name: Run type-system conformance
98-
run: RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests type_system:: -- --nocapture
101+
run: |
102+
RUST_MIN_STACK=134217728 cargo test -p zynml --test e2e_tests type_system:: -- --nocapture
99103
100104
- name: Run lowering/runtime cast conformance
101105
run: |

0 commit comments

Comments
 (0)