Skip to content

Commit d197b42

Browse files
committed
Update GH Action.
1 parent 619d0cb commit d197b42

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/test.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,23 @@ jobs:
2424
- name: Install toolchain
2525
uses: actions-rs/toolchain@v1
2626
with:
27-
profile: minimal
2827
toolchain: nightly-2020-05-07
29-
components: rustfmt
28+
components: rustfmt, clippy
3029
target: wasm32-unknown-unknown
3130
override: true
3231
default: true
32+
- name: Show rustc version
33+
run: rustc --version
34+
- name: Show clippy version
35+
run: cargo clippy --version
3336
- name: Install Wasm toolchain
3437
run: rustup target add wasm32-unknown-unknown
3538
- name: Check format
3639
run: make dev-format-check
37-
- name: Install clippy
38-
run: rustup component add clippy
40+
- name: TEMP cargo clean
41+
run: cargo clean
42+
- name: TEMP cargo check
43+
run: cargo check --all
3944
- name: Run clippy
4045
run: cargo clippy -- -D warnings
4146
- name: Update

0 commit comments

Comments
 (0)