Skip to content

Commit 8784e65

Browse files
committed
ci: pin nightly rust as temporary fix
pins a nightly which isn't ultra-slow (>100mins) to obtain coverage report also runs nightly, but that should hit the timeout until it's fixed
1 parent e16a3e0 commit 8784e65

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,21 @@ on:
77
branches: [ master ]
88
jobs:
99
coverage:
10+
timeout-minutes: 20
11+
strategy:
12+
matrix:
13+
toolchain: [nightly, nightly-2024-08-29]
14+
1015
name: Coverage
1116
runs-on: ubuntu-latest
1217
env:
1318
RUSTFLAGS: -D warnings
1419
CARGO_TERM_COLOR: always
1520
steps:
1621
- uses: actions/checkout@v4
17-
- uses: dtolnay/rust-toolchain@nightly
22+
- uses: dtolnay/rust-toolchain@master
1823
with:
24+
toolchain: ${{ matrix.toolchain }}
1925
components: llvm-tools-preview
2026

2127
- uses: taiki-e/install-action@v2

0 commit comments

Comments
 (0)