Use unwrap in tests #202
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cache installation of tools | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo | |
~/.rustup | |
key: ${{ runner.os }}-installation | |
- name: Add wasm32 target | |
run: rustup target add wasm32-unknown-unknown | |
- name: Add wasm32-wasi target | |
run: rustup target add wasm32-wasi | |
- name: Install wasm-pack | |
run: cargo install --version 0.12.1 wasm-pack | |
- name: Install cargo component | |
run: cargo install --version 0.10.1 cargo-component | |
- uses: actions/checkout@v3 | |
- name: Cache build folders | |
uses: actions/cache@v3 | |
with: | |
path: | | |
Cargo.lock | |
target | |
tests/instance | |
key: ${{ runner.os }}-build-folders-${{ hashFiles('Cargo.toml', 'crates/*/Cargo.toml') }} | |
restore-keys: ${{ runner.os }}-build-folders | |
- name: Run unit tests | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cd crates/wasm-bridge && wasm-pack test --node -- --all-features | |
- name: Run wasi unit tests | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cd crates/wasm-bridge-wasi && wasm-pack test --node -- --all-features | |
- name: Check formatting | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cargo fmt --all -- --check | |
- name: Check compile warnings | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cargo check --target wasm32-unknown-unknown --all-features | |
- name: Check clippy warnings | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cargo clippy --target wasm32-unknown-unknown --all-features -- -D clippy::all | |
- name: Run tests | |
env: | |
RUSTFLAGS: "-D warnings" | |
run: cd tests && bash run_all_tests.sh |