Skip to content

Commit

Permalink
ci: continue past errors of true nightly for coverage
Browse files Browse the repository at this point in the history
ci: fix logic error in actions
  • Loading branch information
YeungOnion committed Sep 13, 2024
1 parent 07d3c4e commit 0c29b44
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:
branches: [ master ]
jobs:
coverage:
timeout-minutes: 20
timeout-minutes: ${{ matrix.toolchain == 'nightly' && 10 || 360 }} # 360 mins is gh actions default
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
strategy:
matrix:
toolchain: [nightly, nightly-2024-09-01]
toolchain: [nightly-2024-09-01, nightly]

name: Coverage
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0c29b44

Please sign in to comment.