Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,10 @@ jobs:
run: cp Cargo-recent.lock Cargo.lock
- name: Running cargo test
env:
FEATURES: bitcoin elements test-utils
FEATURES: base64 elements test-utils serde human_encoding
run: |
for f in $FEATURES; do echo "Features: $f" && cargo test --locked --no-default-features --features="$f"; done
echo "All features" && cargo test --locked --all-features
cd simplicity-sys
cargo test --locked --no-default-features
cargo test --locked --features="test-utils"
Expand Down
Loading