File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 39
39
40
40
- name : Run cargo fmt
41
41
run : |
42
- cargo fmt --all -- --check
42
+ cargo +${{ matrix.toolchain }} fmt --all -- --check
43
43
44
44
- name : Install binstall
45
45
run : |
@@ -51,15 +51,19 @@ jobs:
51
51
52
52
- name : Run cargo check
53
53
run : |
54
- cargo check-all-features --target wasm32-unknown-unknown
54
+ cargo +${{ matrix.toolchain }} check-all-features --target wasm32-unknown-unknown
55
55
56
56
- name : Run cargo test
57
57
run : |
58
- cargo test-all-features
58
+ cargo +${{ matrix.toolchain }} test-all-features
59
59
60
60
- name : Run cargo clippy
61
61
run : |
62
- cargo clippy --target wasm32-unknown-unknown -- -D warnings
62
+ cargo +${{ matrix.toolchain }} clippy --target wasm32-unknown-unknown -- -D warnings
63
+
64
+ - name : Run cargo clippy (all features)
65
+ run : |
66
+ cargo +${{ matrix.toolchain }} clippy --all-features --target wasm32-unknown-unknown -- -D warnings
63
67
64
68
examples :
65
69
You can’t perform that action at this time.
0 commit comments