Skip to content

update ask prompt wiring and add verbose response traces #8

update ask prompt wiring and add verbose response traces

update ask prompt wiring and add verbose response traces #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
checks:
name: fmt clippy test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: cargo fmt --check
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test --all-targets --all-features