From a73bc5368bce414f6a4cafb57864425090589daf Mon Sep 17 00:00:00 2001 From: Dmytro Kozhevin Date: Tue, 5 Nov 2024 17:58:09 -0500 Subject: [PATCH] Re-enable semver-checks. --- .github/workflows/rust.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f9c811e54..c203c35dd 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,11 +17,7 @@ jobs: # temporarily disabling publish-dry-run, it appears to be broken with recent # changes to dependency specifications? # needs: [fmt, cackle, cargo-deny, check-git-rev-deps, build-and-test, publish-dry-run] - # needs: [fmt, cackle, cargo-deny, check-git-rev-deps, semver-checks, build-and-test] - # semver-checks is currently broken due to incompatible `arbitrary` crate - # update (https://github.com/rust-fuzz/arbitrary/issues/203). - # TODO: re-enable this as soon as the check has been fixed. - needs: [fmt, cackle, cargo-deny, check-git-rev-deps, build-and-test] + needs: [fmt, cackle, cargo-deny, check-git-rev-deps, semver-checks, build-and-test] runs-on: ubuntu-latest steps: - if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')