Update model_server #504
Workflow file for this run
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: 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 |