File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,14 @@ jobs:
28
28
uses : actions/checkout@v4
29
29
- name : Install dependencies
30
30
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
31
- - name : Install Rust Nightly
32
- run : rustup toolchain install nightly
33
- - name : Install rust-src
34
- run : rustup component add --toolchain nightly rust-src
35
- - name : Install wasm32 rust target
36
- run : rustup target install --toolchain nightly wasm32-unknown-unknown
31
+ - name : Install latest nightly
32
+ uses : actions-rs/toolchain@v1
33
+ with :
34
+ toolchain : nightly
35
+ override : true
36
+ default : nightly
37
+ components : rustfmt, clippy rust-src
38
+ target : wasm32-unknown-unknown
37
39
- name : make wasm-examples
38
40
run : make wasm-examples
39
41
- name : Setup Pages
You can’t perform that action at this time.
0 commit comments