Experiment: do I need to cache myself?

This commit is contained in:
Bryan Richter 2026-04-13 10:52:10 +03:00
parent 08d08c472f
commit b271ebaf44
No known key found for this signature in database
GPG Key ID: B202264020068BFB

View File

@ -7,16 +7,13 @@ runs:
id: ghcup id: ghcup
with: with:
stack-hook: true stack-hook: true
stack: latest
- uses: actions/cache@v4 - uses: actions/cache@v4
with: with:
path: | path: ~/.stack
${{ steps.ghcup.outputs.basedir }}
~/.stack
key: stack-${{ runner.os }}-${{ hashFiles('stack.yaml') }} key: stack-${{ runner.os }}-${{ hashFiles('stack.yaml') }}
restore-keys: | restore-keys: |
stack-${{ runner.os }}- stack-${{ runner.os }}-
${{ runner.os }}- ${{ runner.os }}-
- run: ghcup install stack
shell: bash
- run: stack test - run: stack test
shell: bash shell: bash