diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6af91db502b19..a65ca5bfc5d33 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -904,6 +904,7 @@ jobs: - go_unit - go_examples - go_e2e + - go_integration - rust_lint - rust_check - rust_test @@ -947,6 +948,12 @@ jobs: echo "- Go Unit Tests" >> failures.md exit 1 + - name: Go Integration Tests failed + if: always() && needs.go_integration.result != 'success' && needs.go_integration.result != 'skipped' + run: | + echo "- Go Integration Tests" >> failures.md + exit 1 + - name: Go Examples failed if: always() && needs.go_examples.result != 'success' && needs.go_examples.result != 'skipped' run: |