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 17a0fa7 commit 6c73fd1Copy full SHA for 6c73fd1
.github/workflows/clippy-rustfmt.yml
@@ -19,11 +19,10 @@ jobs:
19
- uses: actions/checkout@v3
20
21
- name: Install Rust Nightly
22
- uses: actions-rs/toolchain@v1
23
- with:
24
- toolchain: nightly
25
- override: true
26
- components: rustfmt, clippy
+ run: |
+ rustup override set nightly
+ rustup update nightly
+ rustup component add rustfmt clippy
27
28
- name: rustfmt
29
run: cargo fmt --all -- --check
.github/workflows/main.yml
@@ -16,10 +16,9 @@ jobs:
16
17
18
- name: Install Rust Stable
- toolchain: stable
+ rustup override set stable
+ rustup update stable
- name: Test with default feature
run: cargo test
0 commit comments