diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9a5ff45..e6e1b54 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,4 +19,7 @@ jobs: run: cargo build - name: Run cargo test run: cargo test --all - \ No newline at end of file + - name: Build native-simulator test contracts + run: cd tests/test-contracts && rustup target add riscv64imac-unknown-none-elf && make build + - name: Run cargo test (with native-simulator) + run: cargo test --features="native-simulator" --all