diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 0608ca6..2bbd76b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -18,7 +18,7 @@ jobs: - uses: Swatinem/rust-cache@v2 - uses: taiki-e/install-action@v2 with: - tool: cargo-hack@0.6,just@1,cargo-msrv@0.16,cargo-deny@0.16 + tool: cargo-hack@0.6,just@1,cargo-msrv@0.16,cargo-deny@0.16,cargo-semver-checks@0.35 - run: just verify lint: runs-on: ubuntu-latest diff --git a/justfile b/justfile index ebdd6b2..ae403ec 100644 --- a/justfile +++ b/justfile @@ -2,6 +2,7 @@ set dotenv-load # Perform all verifications (compile, test, lint, etc.) verify: test lint doc check-msrv + cargo semver-checks cargo deny check licenses # Watch the source files and run `just verify` when source changes