We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28e713f commit c73549dCopy full SHA for c73549d
.github/workflows/ci-checks.yml
@@ -21,7 +21,12 @@ jobs:
21
go-version: '1.23.4'
22
23
- name: Run unit test
24
- run: docker compose -f docker/github_actions/docker-compose.yml run unit-test bash -c "make unit_test && ./scripts/gen_coverage_metadata.sh .build/metadata.txt"
+ uses: nick-fields/retry@v3
25
+ with:
26
+ max_attempts: 2
27
+ timeout_minutes: 30
28
+ command: |
29
+ docker compose -f docker/github_actions/docker-compose.yml run unit-test bash -c "make unit_test && ./scripts/gen_coverage_metadata.sh .build/metadata.txt"
30
31
- name: Upload coverage artifacts
32
uses: actions/upload-artifact@v4
0 commit comments