Skip to content

Commit f1d6a62

Browse files
authored
CI improvement - Implement pr-validation job (#203)
1 parent 481b254 commit f1d6a62

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,3 +208,11 @@ jobs:
208208
flags: unittests
209209
name: codecov-umbrella
210210
fail_ci_if_error: true
211+
212+
pr-validation:
213+
needs: [build]
214+
runs-on: ubuntu-latest
215+
if: ${{ !cancelled() }}
216+
steps:
217+
- if: contains(needs.*.result, 'failure')
218+
run: exit 1

0 commit comments

Comments
 (0)