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 20eb72d commit c62ee67Copy full SHA for c62ee67
1 file changed
.github/workflows/build.yml
@@ -64,9 +64,12 @@ jobs:
64
${{ runner.os }}-maven-unit-integration-
65
${{ runner.os }}-maven-
66
- name: Run unit and integration tests
67
- run: |
68
- mvn -B clean test -P travis jacoco:report \
69
- -Dmaven.gitcommitid.skip=true
+ uses: nick-fields/retry@v3
+ with:
+ timeout_minutes: 3
70
+ max_attempts: 3
71
+ retry_wait_seconds: 1
72
+ command: mvn -B clean test -P travis jacoco:report -Dmaven.gitcommitid.skip=true
73
- name: Upload coverage to Codecov
74
uses: codecov/codecov-action@v4
75
with:
0 commit comments