From 00f0c7c79101f446f12f3474aea8a8cc5cc1999c Mon Sep 17 00:00:00 2001 From: Jonathan Schwender Date: Wed, 25 Dec 2024 17:13:49 +0100 Subject: [PATCH] add cargo semver checks Signed-off-by: Jonathan Schwender --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3e6a60..392a52e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,14 @@ jobs: - run: cargo build --features ${{ matrix.api_level }} --features ${{ matrix.component }} name: Build minimal features + semver_checks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - name: Check semver + uses: obi1kenobi/cargo-semver-checks-action@v2 + rustdoc: name: Build Documentation runs-on: ubuntu-latest