Skip to content

Commit efd75c1

Browse files
committed
re-run integration tests in CI if they fail
This prevents the CI job from having to restart the entire job.
1 parent 309d7f6 commit efd75c1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,11 @@ jobs:
105105
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER: 'lld-link'
106106

107107
- name: Test ${{ matrix.integration }}
108-
run: pnpm run test:integrations ./integrations/${{ matrix.integration }}
108+
run: |
109+
pnpm run test:integrations ./integrations/${{ matrix.integration }}
110+
|| pnpm run test:integrations ./integrations/${{ matrix.integration }}
111+
|| pnpm run test:integrations ./integrations/${{ matrix.integration }}
112+
109113
env:
110114
GITHUB_WORKSPACE: ${{ github.workspace }}
111115

0 commit comments

Comments
 (0)