From dd3ae11bef3b2dbc873e4422ce6892850cccf507 Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Thu, 18 Dec 2025 14:43:55 -0700 Subject: [PATCH] allow semver-checks to fail until crates are published --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1465896..2b12e61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,8 +127,10 @@ jobs: run: cargo clippy --all --all-features -- -D warnings # Semver compatibility checks + # Note: This will fail until crates are published to crates.io semver-checks: runs-on: ubuntu-latest + continue-on-error: true steps: - name: Checkout