gha-cache-proof 1.0.1

GitHub Actions cache compatibility checker and local cache-store receipt tool for offline CI
Documentation
name: CI

on:
  pull_request:
  push:
    branches:
      - main
    tags:
      - "v*"

permissions:
  contents: read

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v5
      - uses: dtolnay/rust-toolchain@stable
      - name: Format
        run: cargo fmt --check
      - name: Test
        run: cargo test --locked
      - name: Clippy
        run: cargo clippy --locked --all-targets --all-features -- -D warnings
      - name: Docs
        run: cargo doc --locked --no-deps
      - name: Package
        run: cargo package --locked
      - name: Smoke cache proof
        run: cargo run --locked -- check-workflow --repo examples --workspace examples --workflow examples/workflows/cache.yml --format json --output target/cache-proof.json
      - name: Check smoke receipt
        run: jq -e '.summary.failed == 0 and (.workflows[0].cache_steps | length) == 1' target/cache-proof.json