Skip to content

Commit

Permalink
feat: add more commands to taskfile
Browse files Browse the repository at this point in the history
  • Loading branch information
manhunto committed Dec 1, 2024
1 parent 1d84569 commit a8facfb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,24 @@ tasks:
run:release:
cmds:
- cargo run --release -- {{.CLI_ARGS}}
fmt:
cmds:
- cargo fmt
fmt:check:
cmds:
- cargo fmt --check
clippy:
cmds:
- cargo clippy
clippy:pedantic:
cmds:
- cargo clippy -- -W clippy::pedantic
test:
cmds:
- cargo test
checks:
desc: Run all checks
cmds:
- task: fmt:check
- task: clippy
- task: test

0 comments on commit a8facfb

Please sign in to comment.