Skip to content

fix: remove agent memory handling causing MCP termination issues #7

fix: remove agent memory handling causing MCP termination issues

fix: remove agent memory handling causing MCP termination issues #7

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
frontend:
name: Frontend — lint + typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install deps
run: bun install --frozen-lockfile
- name: Biome lint
run: bun run lint
- name: TypeScript typecheck
run: bun run typecheck
rust:
name: Rust — check + clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install system deps (Linux)
run: |
sudo apt-get update -y
sudo apt-get install -y \
libwebkit2gtk-4.1-dev \
libayatana-appindicator3-dev \
librsvg2-dev \
patchelf
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.77.2
components: clippy
- uses: Swatinem/rust-cache@v2
with:
workspaces: kernel
- name: cargo check
run: cargo check --manifest-path kernel/Cargo.toml --all-features
- name: cargo clippy
run: cargo clippy --manifest-path kernel/Cargo.toml --all-features -- -D warnings