Skip to content

Commit

Permalink
garden: add "cargo msrv verify" to the checks
Browse files Browse the repository at this point in the history
  • Loading branch information
davvid committed Dec 20, 2024
1 parent f3996d3 commit b3e0eeb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions garden.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ commands:
- check/audit
- check/clippy
- check/deny
- check/msrv
- test
check/audit: |
if type cargo-audit >/dev/null 2>&1
Expand All @@ -42,6 +43,11 @@ commands:
cargo deny check ${disable-fetch} "$@"
fi
check/fmt: cargo fmt --check "$@"
check/msrv: |
if type cargo-msrv >/dev/null 2>&1
then
cargo msrv verify
fi
clean: cargo clean "$@"
commit: git commit "$@"
coverage: cargo kcov "$@"
Expand Down

0 comments on commit b3e0eeb

Please sign in to comment.