We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b955e5a commit d0ed96aCopy full SHA for d0ed96a
1 file changed
.github/workflows/_check.yml
@@ -34,11 +34,14 @@ jobs:
34
run: cargo clippy --all-targets -- -D warnings
35
working-directory: compiler
36
37
- # Lint for wasm target.
38
- - name: Install wasm target
39
- run: rustup target add wasm32-unknown-unknown
+ - uses: dtolnay/rust-toolchain@nightly
+ with:
+ components: clippy
40
+
41
+ - name: Install wasm target (nightly)
42
+ run: rustup target add wasm32-unknown-unknown --toolchain nightly
43
44
45
- name: Clippy (wasm)
- run: cargo clippy --lib --target wasm32-unknown-unknown --features wasm -- -D warnings
- working-directory: compiler
46
+ run: cargo +nightly clippy --lib --target wasm32-unknown-unknown --features wasm -- -D warnings
47
+ working-directory: compiler+
0 commit comments