security: re-pin secret scanner onto the real gitleaks gate #162
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. | |
| name: Rust CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| rust-ci: | |
| uses: hyperpolymath/standards/.github/workflows/rust-ci-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236 | |
| # The reusable job tests default features only; this keeps the feature-gated | |
| # git ingest compiling (it silently broke once — git2 0.21 API drift). | |
| feature-git-integration: | |
| name: cargo test --features git-integration | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - run: cargo test --features git-integration |