Skip to content

Commit

Permalink
Add matrix join point
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainMuller committed Jan 20, 2025
1 parent 2a8b0d4 commit d770999
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/orchestrion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,3 +218,17 @@ jobs:
with:
name: coverage-integration+${{ matrix.mode }}+go${{ steps.go.outputs.version }}+${{ runner.os }}+${{ runner.arch }}
path: ${{ github.workspace }}/orchestrion/coverage/integration.out

# This is a simple join point to make it easy to set up branch protection rules in GitHub.
integration-test-done:
name: Orchestrion Integration Tests
needs: integration-test
runs-on: ubuntu-latest
if: always()
steps:
- name: Success
if: needs.integration-test.result == 'success'
run: echo "Success!"
- name: Failure
if: needs.integration-test.result != 'success'
run: echo "Failure!" && exit 1

0 comments on commit d770999

Please sign in to comment.