mirror of
https://github.com/katanemo/plano.git
synced 2026-05-30 14:25:15 +02:00
split wasm filter
This commit is contained in:
parent
b1746b38b4
commit
0e04b09f56
44 changed files with 6009 additions and 272 deletions
23
.github/workflows/checks.yml
vendored
23
.github/workflows/checks.yml
vendored
|
|
@ -12,13 +12,24 @@ jobs:
|
|||
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
|
||||
|
||||
- name: Build wasm module for prompt_gateway
|
||||
run: cd crates/prompt_gateway && cargo build --release --target=wasm32-wasi
|
||||
|
||||
- name: Run Tests on public_types crate
|
||||
run: cd crates/public_types && cargo test
|
||||
|
||||
- name: Run Tests on prompt_gateway crate
|
||||
run: cd crates/prompt_gateway && cargo test
|
||||
|
||||
- name: Build wasm module for llm_gateway
|
||||
run: cd crates/llm_gateway && cargo build --release --target=wasm32-wasi
|
||||
|
||||
- name: Run Tests on llm_gateway crate
|
||||
run: cd crates/llm_gateway && cargo test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue