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 5a311a1 commit 642bbb8Copy full SHA for 642bbb8
.github/workflows/ci_check.yml
@@ -25,11 +25,11 @@ jobs:
25
- uses: actions/checkout@v4
26
- name: Setup Rust Toolchain
27
run: |
28
- rustup toolchain install nightly
29
- rustup +nightly component add clippy
+ rustup default nightly
+ rustup component add clippy
30
- name: Check clippy
31
32
- cargo +nightly clippy --all-features --all-targets -- -Dwarnings
+ cargo clippy --all-features --all-targets -- -Dwarnings
33
- name: Check Docs
34
35
- cargo +nightly doc --workspace --all-features --no-deps
+ cargo doc --workspace --all-features --no-deps
0 commit comments