From a3c4eefa95db906c47827251d748092ed2d67660 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Wed, 10 Jun 2026 16:54:54 -0400 Subject: [PATCH] Enable semver-checks in CI Now that the initial version is published to crates.io, semver-checks can run against the published baseline. Signed-off-by: John Eckersberg --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56e333f..5880ad9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,8 +55,6 @@ jobs: - run: cargo fmt -- --check semver-checks: - # TODO: Re-enable after initial crates.io publish - if: false name: Semver Checks runs-on: ubuntu-24.04 timeout-minutes: 10 @@ -68,11 +66,12 @@ jobs: # repository settings as the single required status check. required-checks: if: always() - needs: [test, rustfmt] + needs: [test, rustfmt, semver-checks] runs-on: ubuntu-latest timeout-minutes: 5 steps: - run: exit 1 if: >- needs.test.result != 'success' || - needs.rustfmt.result != 'success' + needs.rustfmt.result != 'success' || + needs.semver-checks.result != 'success'