mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 01:06:25 +02:00
* add precommit check
* remove check
* Revert "remove check"
This reverts commit 9987b62b9b.
* fix checks
* fix whitespace errors
21 lines
591 B
YAML
21 lines
591 B
YAML
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
|