We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c78bfb6 commit d24a6f7Copy full SHA for d24a6f7
1 file changed
.github/workflows/per-pr.yml
@@ -46,7 +46,7 @@ jobs:
46
test:
47
name: Unit Tests
48
# Give extra time to ensure pushes to main have time to populate the cache
49
- timeout-minutes: ${{ github.ref == 'refs/heads/master' && 20 || 15 }}
+ timeout-minutes: ${{ matrix.timeoutMinutes || (github.ref == 'refs/heads/master' && 20 || 15) }}
50
strategy:
51
fail-fast: false
52
matrix:
@@ -60,6 +60,7 @@ jobs:
60
runsOn: macos-14
61
- os: macos-intel
62
runsOn: macos-15-intel
63
+ timeoutMinutes: 20
64
runs-on: ${{ matrix.runsOn || matrix.os }}
65
steps:
66
- uses: actions/checkout@v4
0 commit comments