Merge pull request #36 from frantic1048/release-plz/2026-06-25T13-05-45Z #31
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
| name: Blend CI | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - "blend/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/blend-ci.yml" | |
| pull_request: | |
| paths: | |
| - "blend/**" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - ".github/workflows/blend-ci.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| working-directory: blend | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@ab7a9404c0f3da075243ca237b5fac12c98deaa5 # v2.19.3 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - uses: step-security/dtolnay-rust-toolchain@8dd607977d06adf4ed49b190381e74c17a9dd25f # v1.0.0 | |
| with: | |
| toolchain: 1.92.0 | |
| components: rustfmt, clippy | |
| - uses: step-security/rust-cache@851174d9a2fdc03e0896e02844dcc61d81dd7851 # v2.9.1 | |
| with: | |
| workspaces: blend | |
| - run: cargo fmt --check | |
| - run: cargo clippy -- -D warnings | |
| - run: cargo test | |
| - run: cargo run -- check | |
| - run: cargo run -- format --check |