Skip to content

docs: reposition as Linear/Jira for agents, add planning strategy to … #11

docs: reposition as Linear/Jira for agents, add planning strategy to …

docs: reposition as Linear/Jira for agents, add planning strategy to … #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
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') }}
- name: Build
run: cargo build
- name: Unit tests
run: cargo test
- name: Functional tests
run: bash tests/functional_test.sh
- name: Clippy
run: cargo clippy -- -D warnings 2>/dev/null || true
- name: Check formatting
run: cargo fmt --check 2>/dev/null || true