Skip to content

Commit

Permalink
chore: fix integration success to always report status
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbillman committed Jul 23, 2024
1 parent 787444e commit dc8caf4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,13 @@ jobs:
name: Integration Success
needs: [integration-run]
runs-on: ubuntu-latest
if: ${{ always() }}
steps:
- name: Ok
run: echo "Integration tests passed"
- name: Check integration tests result
run: |
if [[ "${{ needs.integration-run.result }}" == "failure" ]]; then
echo "Integration tests failed"
exit 1
else
echo "Integration tests passed"
fi

0 comments on commit dc8caf4

Please sign in to comment.