Skip to content

Update wasmtime-wasi requirement from 16.0.0 to 19.0.1 #334

Update wasmtime-wasi requirement from 16.0.0 to 19.0.1

Update wasmtime-wasi requirement from 16.0.0 to 19.0.1 #334

Workflow file for this run

name: Test
on: [ push, workflow_dispatch ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo
uses: Swatinem/rust-cache@v1.3.0
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all-features
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features
env:
RUST_BACKTRACE: 1