Skip to content

fix(ci): bind forge SSH key to SSH_PRIVATE_KEY env so mirror guards work #96

fix(ci): bind forge SSH key to SSH_PRIVATE_KEY env so mirror guards work

fix(ci): bind forge SSH key to SSH_PRIVATE_KEY env so mirror guards work #96

Workflow file for this run

# // Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>

Check failure on line 1 in .github/workflows/rust-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rust-ci.yml

Invalid workflow file

(Line: 17, Col: 9): Unrecognized function: 'hashFiles'. Located at position 1 within expression: hashFiles('Cargo.toml') != '', (Line: 38, Col: 9): Unrecognized function: 'hashFiles'. Located at position 1 within expression: hashFiles('Cargo.toml') != ''
# 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.
name: Rust CI
on:
push:
branches: [main, master]
permissions:
contents: read
jobs:
check:
name: Cargo check + clippy + fmt
runs-on: ubuntu-latest
timeout-minutes: 15
if: hashFiles('Cargo.toml') != ''
steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@4be9e76fd7c4901c61fb841f559994984270fce7 # stable
with:
components: clippy, rustfmt
- name: Cache cargo registry and build
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2
- name: Cargo check
run: cargo check --all-targets 2>&1
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --all-targets -- -D warnings
test:
name: Cargo test
runs-on: ubuntu-latest
timeout-minutes: 15
needs: check
if: hashFiles('Cargo.toml') != ''
steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@4be9e76fd7c4901c61fb841f559994984270fce7 # stable
- name: Cache cargo registry and build
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2
- name: Run tests
run: cargo test --all-targets
- name: Write summary
if: always()
run: |
echo "## Rust CI Results" >> "$GITHUB_STEP_SUMMARY"
echo "" >> "$GITHUB_STEP_SUMMARY"
echo "- **cargo check**: passed" >> "$GITHUB_STEP_SUMMARY"
echo "- **cargo test**: completed" >> "$GITHUB_STEP_SUMMARY"