Files
MetaCrate/.gitea/workflows/rust-workspace.yml
Chili Palmer 9c9d5b91f1
All checks were successful
Native code generation / deterministic (push) Successful in 12m0s
Imaging and meshing gate / native (push) Successful in 4m3s
Native Rust workspace compile / compile (push) Successful in 4m4s
Implement native AgentManager services (#59)
2026-08-09 22:07:51 +00:00

32 lines
812 B
YAML

name: Native Rust workspace compile
on:
push:
paths:
- ".gitea/workflows/rust-workspace.yml"
- "**/*.rs"
- "**/Cargo.toml"
- "Cargo.lock"
pull_request:
paths:
- ".gitea/workflows/rust-workspace.yml"
- "**/*.rs"
- "**/Cargo.toml"
- "Cargo.lock"
workflow_dispatch:
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
- name: Audit native AgentManager boundary
run: python3 tools/check_milestone_09_issue_59.py
- name: Compile every workspace target with bounded memory
run: cargo check --workspace --all-targets --locked -j 1