Rerun integration tests 5 times if error

This commit is contained in:
Kristoffer Dalby 2022-06-27 12:02:29 +00:00
parent 3777de7133
commit 32a6151df9

View File

@ -27,4 +27,9 @@ jobs:
- name: Run Integration tests
if: steps.changed-files.outputs.any_changed == 'true'
run: nix develop --command -- make test_integration
uses: nick-fields/retry@v2
with:
timeout_minutes: 240
max_attempts: 5
retry_on: error
command: nix develop --command -- make test_integration