Skip to content

Commit 627dbb7

Browse files
lwshangclaude
andcommitted
fix(ci): collapse no-TLS step's run to one line
The step used a backslash line-continuation inside a YAML plain scalar. Plain scalars fold newlines into spaces but don't interpret escapes, so the shell received a literal `\` followed by a space — escaping the space into a single literal-space word rather than continuing the command. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e949b06 commit 627dbb7

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ jobs:
9494
# via #[should_panic]; run only that test, since the rest of ic-agent's
9595
# lib tests would also panic for the same (expected) reason.
9696
shell: bash
97-
run: cargo test -p ic-agent --no-default-features --features pem \
98-
--test crypto_provider_neither --no-fail-fast
97+
run: cargo test -p ic-agent --no-default-features --features pem --test crypto_provider_neither --no-fail-fast
9998

10099
- name: Test - WASM (ic-agent, wasm-bindgen)
101100
if: ${{ matrix.os == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)