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 0cd6c91 commit 046a1e6Copy full SHA for 046a1e6
.github/workflows/test.yml
@@ -81,7 +81,8 @@ jobs:
81
- name: Install toolchain
82
uses: actions-rs/toolchain@v1
83
with:
84
- toolchain: nightly
+ # nightly regression https://github.com/rust-lang/rust/issues/95267
85
+ toolchain: nightly-2022-03-20
86
profile: minimal
87
components: rustfmt, clippy
88
override: true
@@ -91,7 +92,7 @@ jobs:
91
92
cache-on-failure: true
93
94
- name: cargo fmt
- run: cargo +nightly fmt --all -- --check
95
+ run: cargo +nightly-2022-03-20 fmt --all -- --check
96
97
- name: cargo clippy
- run: cargo +nightly clippy --all --all-features -- -D warnings
98
+ run: cargo +nightly-2022-03-20 clippy --all --all-features -- -D warnings
0 commit comments