We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4386d5b commit 093d132Copy full SHA for 093d132
.github/workflows/ci.yml
@@ -22,3 +22,16 @@ jobs:
22
23
unit-tests:
24
uses: Workiva/gha-dart-oss/.github/workflows/test-unit.yaml@v0.1.11
25
+
26
+ testing-and-checks-complete:
27
+ name: Testing and Checks Completed
28
+ needs: [ build, checks, unit-tests ]
29
+ if: ${{ !cancelled() && github.event_name == 'pull_request' || github.ref_type == 'tag' }}
30
+ runs-on: [ xs-al2023 ]
31
+ steps:
32
+ - run: |
33
+ if [ "${{ needs.checks.result }}" == "failure" ]; then
34
+ echo "Some checks have failed. Please fix the issues and try again."
35
+ exit 1
36
+ fi
37
+ echo 'All Testing and checks have completed.'
0 commit comments