Skip to content

Commit

Permalink
Add test to required PR checks (#1659)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Jan 22, 2025
1 parent 5812953 commit 808b769
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,18 @@ jobs:
if: github.event_name == 'pull_request' && always()
needs:
- build
- test
- integration-test
- markdown-lint-check
- misspell-check
- shell-script-check
runs-on: ubuntu-latest
steps:
# only the "build" and "integration-test" checks are required for release branch PRs in order
# only the build and test checks are required for release branch PRs in order
# to avoid any unnecessary release branch maintenance (especially for patches)
- if: |
needs.build.result != 'success' ||
needs.test.result != 'success' ||
needs.integration-test.result != 'success' ||
(
!startsWith(github.base_ref, 'release/') &&
Expand Down

0 comments on commit 808b769

Please sign in to comment.