diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d6ac919..9448e741 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -430,3 +430,24 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@nightly - run: cargo doc --workspace --exclude=blazesym-dev --exclude=gsym-in-apk --no-deps + + required-checks: + needs: [ + build, + build-cross, + build-minimum, + nop-rebuilds, + test-coverage, + test-sanitizers, + test-release, + test-miri, + test-examples, + c-header, + clippy, + rustfmt, + cargo-doc, + ] + if: always() + runs-on: ubuntu-latest + steps: + - run: echo '${{ toJSON(needs) }}' | jq -e 'to_entries | all(.value.result == "success")'