preload caches #138
This file contains 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: preload caches | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/Cargo.*" | |
schedule: | |
# Run every Monday at 7:45am UTC. | |
- cron: 45 7 * * 1 | |
# Allow manually running this workflow. | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
cache_actionlint: | |
name: cache actionlint | |
uses: EarthmanMuons/reusable-workflows/.github/workflows/preload-caches-actionlint.yml@main | |
cache_rust: | |
name: cache rust | |
uses: EarthmanMuons/reusable-workflows/.github/workflows/preload-caches-rust.yml@main |