From 866925c85dd2bceabfcf822d8eb9f4fdf3ae5e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= Date: Fri, 25 Oct 2024 10:52:08 +0100 Subject: [PATCH] ci: Check semver breaks on each PR --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 033dd9c..2d94b69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,4 +70,11 @@ jobs: - name: Tests with no features run: cargo test --verbose --no-default-features - name: Tests with all features - run: cargo test --verbose --all-features \ No newline at end of file + run: cargo test --verbose --all-features + + rs-semver-checks: + needs: [check] + if: ${{ github.event_name == 'pull_request' }} + uses: CQCL/hugrverse-actions/.github/workflows/rs-semver-checks.yml@main + secrets: + GITHUB_PAT: ${{ secrets.HUGRBOT_PAT }} \ No newline at end of file