From 883cb5ab0c37f1042589022bceed7e01cb9fb95c Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 11 Dec 2023 16:05:11 -0500 Subject: [PATCH] chore(ci): add semver check --- .github/workflows/CI.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d3443e8198..e850209540 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -27,6 +27,7 @@ jobs: - check-external-types - udeps - minimal-versions + - semver steps: - run: exit 0 @@ -286,3 +287,15 @@ jobs: - uses: Swatinem/rust-cache@v2 - run: cargo minimal-versions check - run: cargo minimal-versions check --features full + + semver: + name: semver + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Check semver + uses: obi1kenobi/cargo-semver-checks-action@v2 + with: + feature-group: only-explicit-features + features: full + release-type: minor