Merge pull request #1316 from BryceGattis/doc_typo_fix #11
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
# A dummy workflow that populates the runner with dependencies | |
# and pops them in the actions cache, so we know there is | |
# always a fallback for subsequent PRs | |
# | |
name: Populate Runner Cache | |
on: | |
push: | |
branches: | |
- main | |
- feature/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
cache: | |
name: ${{ matrix.config.os }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# config.os vs os to match requirements of bootstrap_platform | |
config: | |
- os: ubuntu-20.04 | |
- os: macos-11 | |
- os: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bootstrap | |
uses: ./.github/bootstrap_platform |