Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #7

Closed
wants to merge 10 commits into from
12 changes: 12 additions & 0 deletions .github/workflows/functional-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,18 @@ jobs:
append: true
message: |
:x: ${{ matrix.name }} functional test cancelled. Please check [the logs](${{ env.ACTION_LINK }}) for more details
- id: report_test_status
if: always()
run: |
if ${{ env.test_status }} == 'failure' || ${{ job.status }} == 'failure' || ${{ job.status }} == 'cancelled'; then
echo "test_status=failure" >> $GITHUB_OUTPUT
echo "test_status=failure" >> $GITHUB_ENV
else
echo "test_status=success" >> $GITHUB_OUTPUT
fi
- id: test
run: |
echo "hi2"
report-test-results:
name: Report test results
needs: [build, tests]
Expand Down
Loading