From c55487f5ae8ef911a9ad943cb3fb29627f2440b5 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 29 Jan 2024 11:08:46 -0500 Subject: [PATCH] chore: add semver job to CI --- .github/workflows/CI.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d2ffa64..d80b9fb 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,6 +18,7 @@ jobs: - msrv - miri - features + - semver - doc steps: - run: exit 0 @@ -115,6 +116,18 @@ jobs: - run: cargo hack --no-dev-deps check --feature-powerset --depth 2 + 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 + doc: name: Build docs needs: [style, test]