Install necessary targets and simplify further.

This commit is contained in:
Nolan Darilek 2022-11-22 12:44:43 -06:00
parent 5470b9557d
commit 3c9a78a953
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,6 @@ jobs:
if: ${{ runner.os == 'Linux' }}
- run: |
rustup toolchain install stable
cargo check --all-features --examples
cargo fmt --all --check
cargo clippy --all-features
@ -28,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
- run: |
rustup toolchain install stable
cargo check --all-features --examples --target wasm32-unknown-unknown
rustup target add wasm32-unknown-unknown
cargo fmt --all --check
cargo clippy --all-features --target wasm32-unknown-unknown
@ -50,5 +49,6 @@ jobs:
- uses: actions/checkout@v3
- run: |
rustup toolchain install stable
rustup target add wasm32-unknown-unknown
cargo install cargo-make
cargo make build-web-example