Skip to content

Commit

Permalink
ci: add dep. on check from {test,clippy,rustdoc}
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Jul 8, 2024
1 parent 58b4d4a commit 3fb4852
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down Expand Up @@ -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' }}
Expand All @@ -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' }}
Expand Down

0 comments on commit 3fb4852

Please sign in to comment.