Skip to content

update path for arch_config.yaml file #327

update path for arch_config.yaml file

update path for arch_config.yaml file #327

Workflow file for this run

name: Checks
on: pull_request
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Rust
run: rustup toolchain install stable --profile minimal
- name: Setup | Install wasm toolchain
run: rustup target add wasm32-wasi
- name: Build wasm module
run: cd arch && cargo build --release --target=wasm32-wasi
- name: Run Tests on arch
run: cd arch && cargo test
- name: Run Tests on public_types
run: cd public_types && cargo test