Skip to content

Commit

Permalink
feat: Add a simple justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Granddave committed May 21, 2024
1 parent ee5fc1b commit be488bc
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
default: build test lint format

build:
cargo build

test:
cargo test

lint:
cargo clippy

format:
cargo fmt --all -- --check

0 comments on commit be488bc

Please sign in to comment.