Skip to content

Commit 808b769

Browse files
authored
Add test to required PR checks (#1659)
1 parent 5812953 commit 808b769

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,16 +151,18 @@ jobs:
151151
if: github.event_name == 'pull_request' && always()
152152
needs:
153153
- build
154+
- test
154155
- integration-test
155156
- markdown-lint-check
156157
- misspell-check
157158
- shell-script-check
158159
runs-on: ubuntu-latest
159160
steps:
160-
# only the "build" and "integration-test" checks are required for release branch PRs in order
161+
# only the build and test checks are required for release branch PRs in order
161162
# to avoid any unnecessary release branch maintenance (especially for patches)
162163
- if: |
163164
needs.build.result != 'success' ||
165+
needs.test.result != 'success' ||
164166
needs.integration-test.result != 'success' ||
165167
(
166168
!startsWith(github.base_ref, 'release/') &&

0 commit comments

Comments
 (0)