From 3fb4852dd9b8eb4b9061a6f963a000dab38b840b Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Tue, 11 Jun 2024 13:40:24 -0400 Subject: [PATCH] ci: add dep. on `check` from `{test,clippy,rustdoc}` --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6cea763..f6732c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,7 @@ jobs: test: name: Test Suite + needs: [check] if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.rust != 'stable' }} @@ -86,6 +87,7 @@ jobs: clippy: name: Clippy + needs: [check] if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name runs-on: ubuntu-latest continue-on-error: ${{ matrix.rust != 'stable' }} @@ -111,6 +113,7 @@ jobs: rustdoc: name: Documentation + needs: [check] if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name runs-on: ubuntu-latest continue-on-error: ${{ matrix.rust != 'stable' }}