Skip to content

Commit 642bbb8

Browse files
committed
ci: set default nightly to avoid misc bugs on win
1 parent 5a311a1 commit 642bbb8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci_check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
- uses: actions/checkout@v4
2626
- name: Setup Rust Toolchain
2727
run: |
28-
rustup toolchain install nightly
29-
rustup +nightly component add clippy
28+
rustup default nightly
29+
rustup component add clippy
3030
- name: Check clippy
3131
run: |
32-
cargo +nightly clippy --all-features --all-targets -- -Dwarnings
32+
cargo clippy --all-features --all-targets -- -Dwarnings
3333
- name: Check Docs
3434
run: |
35-
cargo +nightly doc --workspace --all-features --no-deps
35+
cargo doc --workspace --all-features --no-deps

0 commit comments

Comments
 (0)