Touch cache #146
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: Touch cache | |
on: | |
schedule: | |
- cron: "16 11 * * 3,6" | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
# - macOS-latest | |
name: touch-cache-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Configure environment | |
run: | | |
git config --global core.autocrlf false | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/cache-haskell-deps | |
- uses: ./.github/actions/cache-build |