wasmi/check.sh

13 lines
133 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -eux
cd $(dirname $0)
cargo check --tests
cargo check \
--manifest-path=spec/Cargo.toml \
--tests
cd -