From 1b2152862fefbb1e2cce9ab429ad046c36bede8e Mon Sep 17 00:00:00 2001 From: Jonathan Cornaz Date: Sun, 3 Nov 2024 10:41:57 +0100 Subject: [PATCH] add `cargo-semver-checks` to ci --- .github/workflows/check.yml | 2 +- justfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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