Skip to content

Commit

Permalink
Fix workflow by running the rmp-serde example separately since it nee…
Browse files Browse the repository at this point in the history
…ds a feature enabled.
  • Loading branch information
CdnCentreForChildProtection committed Aug 23, 2023
1 parent f42cded commit ddcfc95
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ jobs:
- name: Run the examples
run: |
cargo clean
cargo run --example 2>&1 | grep -E '^ ' | xargs -n1 cargo run --example
# rmp-serde needs a feature activated, so we'll just run it separately.
cargo run --example 2>&1 | grep -E '^ ' | awk '!/rmp-serde/' | xargs -n1 cargo run --example
cargo run --example rmp-serde --features serde-rmp
fmt:
name: Ensure the heed project is formatted
Expand Down

0 comments on commit ddcfc95

Please sign in to comment.