Skip to content

Commit

Permalink
ci: retry for native test
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Flash committed Feb 6, 2025
1 parent 5174b82 commit 17ca2a7
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,15 @@ jobs:
run: |
moon test --target all --serial --release
moon test --target all --serial
moon test --target native --release
moon test --target native
- name: moon test(native)
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 5
command: |
moon test --target native --release
moon test --target native
- name: moon check
run: moon check --deny-warn
Expand Down Expand Up @@ -111,8 +118,15 @@ jobs:
run: |
moon test --target all --serial --release
moon test --target all --serial
moon test --target native --release
moon test --target native
- name: moon test(native)
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 5
command: |
moon test --target native --release
moon test --target native
- name: moon check
run: moon check --deny-warn
Expand Down

0 comments on commit 17ca2a7

Please sign in to comment.