Skip to content

fix: prevent orphaned tool_use on cancel; increase output stability timeout #8

fix: prevent orphaned tool_use on cancel; increase output stability timeout

fix: prevent orphaned tool_use on cancel; increase output stability timeout #8

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- "release/**"
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libxcb1-dev \
libxcb-render0-dev \
libxcb-shape0-dev \
libxcb-xfixes0-dev \
libssl-dev \
pkg-config
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache Cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Build
run: cargo build
- name: Clippy
run: cargo clippy -- -D warnings
- name: Test
run: cargo test