Skip to content

Commit 32b02b6

Browse files
committed
fix: simplicity-sys is skipped in CI
simplicity-sys unit tests are not run if simplicity-lang unit tests fail, even for a unified command like `cargo test --workspace`.
1 parent 9d0a40e commit 32b02b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,6 @@ jobs:
116116
- name: Set dependencies
117117
run: cp Cargo-recent.lock Cargo.lock
118118
- name: Run unit tests
119-
run: cargo test --locked --workspace --all-features
119+
run: |
120+
cargo test --locked --manifest-path simplicity-sys/Cargo.toml
121+
cargo test --locked --workspace --all-features

0 commit comments

Comments
 (0)