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.
dtolnay/toolchain
1 parent 7416bf9 commit e404089Copy full SHA for e404089
.github/workflows/code_coverage.yml
@@ -16,12 +16,14 @@ jobs:
16
uses: actions/checkout@v4
17
- name: Install lcov tools
18
run: sudo apt-get install lcov -y
19
- - name: Install rustup
20
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
21
- - name: Set default toolchain
22
- run: rustup default nightly
+ - name: Install Rust Toolchain
+ uses: dtolnay/rust-toolchain@v1
+ with:
+ toolchain: nightly
23
- name: Set profile
24
run: rustup set profile minimal
25
+ - name: Update toolchain
26
+ run: rustup update
27
- name: Add llvm tools
28
run: rustup component add llvm-tools-preview
29
- name: Update toolchain
0 commit comments