Files
MetaCrate/.gitea/workflows/rust-workspace.yml
Chili Palmer d5c318d280
All checks were successful
Native code generation / deterministic (push) Successful in 13m18s
Imaging and meshing gate / native (push) Successful in 4m12s
Native Rust workspace compile / compile (push) Successful in 4m12s
Implement native AIS inventory reconciliation (#63)
2026-08-10 06:41:29 +00:00

37 lines
1.0 KiB
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 milestone 09 boundaries
run: |
python3 tools/check_milestone_09_issue_59.py
python3 tools/check_milestone_09_issue_60.py
python3 tools/check_milestone_09_issue_61.py
python3 tools/check_milestone_09_issue_62.py
python3 tools/check_milestone_09_issue_63.py
- name: Compile every workspace target with bounded memory
run: cargo check --workspace --all-targets --locked -j 1