chore: verify the MSRV in CI lint (#1696)

Signed-off-by: Keming <kemingy94@gmail.com>
This commit is contained in:
Keming 2025-05-14 07:54:05 +08:00 committed by GitHub
parent 1ed357fe73
commit 874b0f0ca2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View file

@ -48,6 +48,11 @@ jobs:
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- uses: cargo-bins/cargo-binstall@main
- name: Verify the MSRV
run: |
cargo binstall --no-confirm cargo-msrv
make verify
publish-check:
runs-on: ubuntu-latest

View file

@ -58,3 +58,8 @@ screencast: ## Create a screencast for the docs
termsvg rec --command=assets/screencast.sh recording.asc
termsvg export --minify recording.asc --output=assets/screencast.svg
rm recording.asc
.PHONY: verify
verify: ## Verify the MSRV
cargo msrv --path lychee-lib verify
cargo msrv --path lychee-bin verify