Skip to content

Commit

Permalink
fix(ci): require go integration (vercel#3519)
Browse files Browse the repository at this point in the history
Introduced when moving go integration tests into our main test workflow:

vercel#3429
  • Loading branch information
tknickman authored Jan 31, 2023
1 parent 9eea531 commit 496c883
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,7 @@ jobs:
- go_unit
- go_examples
- go_e2e
- go_integration
- rust_lint
- rust_check
- rust_test
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 496c883

Please sign in to comment.