We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f103831 commit b7ebf74Copy full SHA for b7ebf74
.github/workflows/rust.yml
@@ -159,8 +159,10 @@ jobs:
159
run: |
160
cargo clean
161
# rmp-serde needs a feature activated, so we'll just run it separately.
162
- cargo run --example 2>&1 | grep -E '^ ' | awk '!/rmp-serde/' | xargs -n1 cargo run --example
+ # We also want to run the nested-rtxns example in release.
163
+ cargo run --example 2>&1 | grep -E '^ ' | awk '!/rmp-serde|nexted-rtxns/' | xargs -n1 cargo run --example
164
cargo run --example rmp-serde --features serde-rmp
165
+ cargo run --release --example nexted-rtxns
166
167
heed3-examples:
168
name: Run the heed3 examples
0 commit comments