Add cabal update to workflow

This commit is contained in:
ajeffrey@roblox.com 2022-02-07 17:10:58 -06:00
parent 50a9ea1b63
commit ce9b7e4c70

View file

@ -12,7 +12,7 @@ on:
- 'prototyping/**' - 'prototyping/**'
jobs: jobs:
unix: linux:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@ -25,6 +25,9 @@ jobs:
- name: check examples - name: check examples
working-directory: prototyping working-directory: prototyping
run: agda Examples.agda run: agda Examples.agda
- name: cabal update
working-directory: prototyping
run: cabal update
- name: cabal install - name: cabal install
working-directory: prototyping working-directory: prototyping
run: cabal install --lib aeson scientific vector run: cabal install --lib aeson scientific vector