Skip to content

Commit 1ee9e09

Browse files
committed
Temporary: Fix nightly toolchain in coverage pipeline
1 parent fdf3d54 commit 1ee9e09

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/coverage.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- uses: Swatinem/rust-cache@v2
19-
- uses: dtolnay/rust-toolchain@nightly
19+
- uses: dtolnay/rust-toolchain@master
20+
with:
21+
toolchain: nightly-2024-02-09
2022

2123
- name: Install cargo-llvm-cov
2224
uses: taiki-e/install-action@cargo-llvm-cov
2325

2426
- name: Generate code coverage
25-
run: cargo +nightly llvm-cov --doctests --features "argmin/_full_dev,argmin-math/latest_all" --workspace --lcov --output-path lcov.info
27+
run: cargo +nightly-2024-02-09 llvm-cov --doctests --features "argmin/_full_dev,argmin-math/latest_all" --workspace --lcov --output-path lcov.info
2628

2729
- name: Upload coverage to Codecov
2830
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)