We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db92689 commit 73d499aCopy full SHA for 73d499a
1 file changed
.github/workflows/ci.yml
@@ -51,7 +51,14 @@ jobs:
51
run: cargo run -p httpjet --locked -- --root "$GITHUB_WORKSPACE/examples/litespeed" check --strict
52
53
- name: Run workspace tests
54
- run: cargo test --workspace --locked
+ # The LSAPI supervisor suite signals and reaps detached descendants.
55
+ # GitHub's runner blocks those operations for its unprivileged user.
56
+ run: |
57
+ sudo env \
58
+ "PATH=$PATH" \
59
+ "RUSTUP_HOME=$RUSTUP_HOME" \
60
+ "CARGO_HOME=$CARGO_HOME" \
61
+ cargo test --workspace --locked
62
63
dco:
64
if: github.event_name == 'pull_request'
0 commit comments