Skip to content

Commit

Permalink
chore: add justfile and devenv dependency
Browse files Browse the repository at this point in the history
justfile is minimal for now but can be added to
  • Loading branch information
ss2165 committed Sep 26, 2023
1 parent ee719d0 commit fadf33b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
packages = lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk; [
frameworks.CoreServices
frameworks.CoreFoundation
pkgs.just
]);

# https://devenv.sh/scripts/
Expand Down
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
test:
cargo test

fix:
cargo clippy --fix --allow-staged

0 comments on commit fadf33b

Please sign in to comment.