Skip to content

Commit

Permalink
feat: add Justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bellackn committed Mar 25, 2024
1 parent 22a9f48 commit d3cda23
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/.idea
/target
.idea
.vscode

.env
target
Cargo.lock
16 changes: 16 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
set dotenv-load

_default:
@ just --list

lint:
@ cargo clippy

test:
@ cargo test

build:
@ cargo build

doc:
@ cargo doc --no-deps

0 comments on commit d3cda23

Please sign in to comment.