mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Try to get caching to work
This commit is contained in:
parent
0bb7cd9632
commit
180e739581
1 changed files with 8 additions and 1 deletions
9
.github/workflows/prototyping.yml
vendored
9
.github/workflows/prototyping.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Add table
Reference in a new issue