mirror of
https://github.com/Hopiu/lychee.git
synced 2026-03-16 20:50:25 +00:00
chore: verify the MSRV in CI lint (#1696)
Signed-off-by: Keming <kemingy94@gmail.com>
This commit is contained in:
parent
1ed357fe73
commit
874b0f0ca2
2 changed files with 10 additions and 0 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
5
Makefile
5
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue