Skip to content

Commit c62ee67

Browse files
committed
fix(ci): restore retry for unit integration tests
1 parent 20eb72d commit c62ee67

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,12 @@ jobs:
6464
${{ runner.os }}-maven-unit-integration-
6565
${{ runner.os }}-maven-
6666
- name: Run unit and integration tests
67-
run: |
68-
mvn -B clean test -P travis jacoco:report \
69-
-Dmaven.gitcommitid.skip=true
67+
uses: nick-fields/retry@v3
68+
with:
69+
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
7073
- name: Upload coverage to Codecov
7174
uses: codecov/codecov-action@v4
7275
with:

0 commit comments

Comments
 (0)