Update github-actions-usetrace-integration-test.yml #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Invoke a Trace on Usetrace on push to development branch | |
on: | |
push: | |
branches: | |
- development | |
jobs: | |
test-usetrace-action: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Usetrace Trace and Wait for it to finish | |
id: executeTrace | |
uses: tarmac/usetrace-github-action@v1 | |
with: | |
trace-id: ${{ vars.USETRACE_TRACE_ID }} | |
test: | | |
- something | |
- somethingElse | |
- name: Check Trace execution result | |
env: | |
BUILD_ID: ${{ steps.executeTrace.outputs.id }} | |
STATUS: ${{ steps.executeTrace.outputs.status }} | |
RESULT_REQUEST: ${{ steps.executeTrace.outputs.request }} | |
RESULT_FINISH: ${{ steps.executeTrace.outputs.finish }} | |
RESULT_PASS: ${{ steps.executeTrace.outputs.pass }} | |
RESULT_FAIL: ${{ steps.executeTrace.outputs.fail }} | |
run: | | |
echo "Trace result: $BUILD_ID $STATUS $RESULT_REQUEST $RESULT_FINISH $RESULT_PASS $RESULT_FAIL " |