We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e16a3e0 commit 8784e65Copy full SHA for 8784e65
.github/workflows/coverage.yml
@@ -7,15 +7,21 @@ on:
7
branches: [ master ]
8
jobs:
9
coverage:
10
+ timeout-minutes: 20
11
+ strategy:
12
+ matrix:
13
+ toolchain: [nightly, nightly-2024-08-29]
14
+
15
name: Coverage
16
runs-on: ubuntu-latest
17
env:
18
RUSTFLAGS: -D warnings
19
CARGO_TERM_COLOR: always
20
steps:
21
- uses: actions/checkout@v4
- - uses: dtolnay/rust-toolchain@nightly
22
+ - uses: dtolnay/rust-toolchain@master
23
with:
24
+ toolchain: ${{ matrix.toolchain }}
25
components: llvm-tools-preview
26
27
- uses: taiki-e/install-action@v2
0 commit comments