fix: retry transient API errors in wait/poll loops (#685) #682
This file contains hidden or 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: "Integration tests" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - releases/* | |
| pull_request: | |
| branches: | |
| - main | |
| - releases/* | |
| jobs: | |
| integration-tests: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/setup-go@v2.1.4 | |
| with: | |
| go-version: 1.21 | |
| - uses: actions/checkout@v2.4.0 | |
| - name: "Run integration tests" | |
| run: make integration-test INTEGRATION_OUTPUT_JUNIT="true" TEST_FLAGS="-v -race" |