Skip to content

Commit

Permalink
just rs-run-all
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 19, 2023
1 parent 61d905d commit b14087b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ rs-lint:
cargo doc --quiet --document-private-items --no-deps --all-features
cargo test --quiet --doc --all-features # runs all doc-tests
# Run all examples with the specified args
rs-run-all *ARGS:
#!/usr/bin/env bash
set -euo pipefail
find examples/rust/ -name main.rs | xargs -I _ sh -c 'cd $(dirname _) && echo $(pwd) && cargo r'

### TOML

Expand Down

0 comments on commit b14087b

Please sign in to comment.