Try to get caching to work

This commit is contained in:
ajeffrey@roblox.com 2022-02-08 11:18:23 -06:00
parent 0bb7cd9632
commit 180e739581

View file

@ -22,7 +22,14 @@ jobs:
run: sudo apt-get install -y cabal-install
- name: cabal update
working-directory: prototyping
run: cabal update
run: |
cabal update
cabal list --simple-output aeson > aeson.txt
- uses: actions/cache@v2
with:
path: ~/.cabal/store
key: ${{ runner.os }}-${{ hashFiles('prototyping/aeson.txt') }}
restore-keys: ${{ runner.os }}-
- name: cabal install
working-directory: prototyping
run: |