diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efaae7c1..92956613 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,28 @@ env: jobs: + ################ + # Pull Request # + ################ + + pr: + if: ${{ github.event_name == 'pull_request' + && !contains(github.event.head_commit.message, '[skip ci]') }} + needs: + - clippy + - feature + - msrv + - rustdoc + - rustfmt + - test + - test-book + runs-on: ubuntu-latest + steps: + - run: true + + + + ########################## # Linting and formatting # ##########################