Skip to content

docs: add install transparency for rt-7 (per-agent file locations) #74

docs: add install transparency for rt-7 (per-agent file locations)

docs: add install transparency for rt-7 (per-agent file locations) #74

Workflow file for this run

# CI workflow for Manifold
# Satisfies: B2 (release velocity), RT-5 (CI integration)
#
# Security scanning runs as a separate workflow (security.yml) which
# triggers on the same events. Use branch protection rules to require
# security checks to pass before merging.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
# Run Manifold verification
manifold:
name: Verify Manifolds
uses: ./.github/workflows/manifold-verify.yml
with:
fail-on-gaps: false # Set to true to fail on non-blocking gaps
# Run tests
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run tests
run: bun test