Skip to content

fix: make agent prompts imperative about initiative delegation workflow #76

fix: make agent prompts imperative about initiative delegation workflow

fix: make agent prompts imperative about initiative delegation workflow #76

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install system dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y libxkbcommon-dev libwayland-dev libvulkan-dev pkg-config
- run: cargo test --all-features
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Install system dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y libxkbcommon-dev libwayland-dev libvulkan-dev pkg-config
- run: cargo clippy --all-features -- -D warnings
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check