chore(clade): backfill [status] lifecycle block (default active) #161
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: MPL-2.0 | ||
| # Rust CI — thin wrapper calling the shared estate reusable in | ||
| # hyperpolymath/standards. Configure once, propagate everywhere. | ||
| # See: docs/CI-REUSABLE-WORKFLOWS.adoc in standards. | ||
| # | ||
| # nextgen-typing is a coordination repo with NO Rust code, so the reusable had | ||
| # nothing to build and failed. Path-gated to Rust artefacts so it only runs if | ||
| # Rust is ever added here (currently never), instead of failing on every push. | ||
| name: Rust CI | ||
| on: | ||
| push: | ||
| branches: [main, master] | ||
| paths: ['**/*.rs', '**/Cargo.toml', '**/Cargo.lock', 'crates/**'] | ||
| pull_request: | ||
| paths: ['**/*.rs', '**/Cargo.toml', '**/Cargo.lock', 'crates/**'] | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| rust-ci: | ||
| timeout-minutes: 30 | ||
| uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236 | ||