taskvisor 0.1.3

Event-driven task orchestration with restart, backoff, and user-defined subscribers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Cargo cache

inputs:
  scope:
    description: Cache namespace.
    required: true

runs:
  using: composite
  steps:
    - uses: actions/cache@v5
      with:
        path: |
          .cache/cargo
          .cache/target
        key: job-${{ inputs.scope }}-${{ hashFiles('Cargo.toml', 'rust-toolchain.toml') }}