Skip to content

Commit

Permalink
add basic example of justfile (#345)
Browse files Browse the repository at this point in the history
part of #156
  • Loading branch information
GlenDC authored Oct 8, 2024
1 parent d4307f7 commit bbc8d9f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
check:
cargo check --workspace

test:
cargo test --workspace --lib --examples

clippy:
cargo clippy --tests -- --deny warnings

qa: check test clippy

0 comments on commit bbc8d9f

Please sign in to comment.