-
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (21 loc) · 856 Bytes
/
Copy pathrust-ci.yml
File metadata and controls
24 lines (21 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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@412a7031577112b31ee287cc6060179d638d6500