Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

fix(llm): normalize anthropic-compatible endpoints and log fallbacks #48

fix(llm): normalize anthropic-compatible endpoints and log fallbacks

fix(llm): normalize anthropic-compatible endpoints and log fallbacks #48

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- run: cargo test --workspace --all-features