Add CI/CD, README, and a case study for deep_research #9

Merged
schaefera merged 5 commits from worktree-deep-research-max-turns-report into master 2026-08-18 12:12:33 +00:00
Showing only changes of commit 26e9624c23 - Show all commits

View file

@ -6,15 +6,12 @@ on:
jobs: jobs:
test: test:
runs-on: docker runs-on: rust-ci
container: rust:1-bookworm
steps: steps:
- name: Checkout - uses: actions/checkout@v4
uses: https://code.forgejo.org/actions/checkout@v4
- name: Cache cargo registry and build artifacts - name: Cache cargo registry and build artifacts
uses: https://code.forgejo.org/actions/cache@v4 uses: actions/cache@v4
with: with:
path: | path: |
~/.cargo/registry ~/.cargo/registry
@ -24,9 +21,6 @@ jobs:
restore-keys: | restore-keys: |
cargo-${{ runner.os }}- cargo-${{ runner.os }}-
- name: Install rustfmt and clippy
run: rustup component add rustfmt clippy
- name: Check formatting - name: Check formatting
run: cargo fmt -- --check run: cargo fmt -- --check