Skip to content

updated docs for 0.1.8 support (#366) #494

updated docs for 0.1.8 support (#366)

updated docs for 0.1.8 support (#366) #494

Workflow file for this run

name: rust tests (prompt and llm gateway)
on:
pull_request:
push:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./crates
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
- name: Setup | Rust
run: rustup toolchain install 1.82 --profile minimal
- name: Setup | Install wasm toolchain
run: rustup target add wasm32-wasip1
- name: Build wasm module
run: cargo build --release --target=wasm32-wasip1
- name: Run unit tests
run: cargo test --lib
- name: Run integration tests
run: cargo test --test integration