Files
MetaCrate/.gitea/workflows/rust-workspace.yml
Chili Palmer aeb44fd089
Some checks failed
Native code generation / deterministic (push) Successful in 8m55s
Imaging and meshing gate / native (push) Failing after 2m32s
JPEG 2000 feature / linux (push) Successful in 1m39s
Skia feature / linux (push) Has been cancelled
Native Rust workspace compile / compile (push) Has been cancelled
Limit Gitea workflow build scope
2026-08-09 12:39:21 +00:00

30 lines
705 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: Compile every workspace target with bounded memory
run: cargo check --workspace --all-targets --locked -j 1