Skip to content

.github/workflows/workflow.yml #267

.github/workflows/workflow.yml

.github/workflows/workflow.yml #267

Workflow file for this run

on:
push: {}
schedule:
- cron: "0 5 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cabal/store
dist-newstyle
key: cabal-${{ hashFiles('chez-grater/chez-grater.cabal') }}-${{ hashFiles('chez-server/chez-server.cabal') }}
restore-keys: |
cabal-${{ hashFiles('chez-grater/chez-grater.cabal') }}-${{ hashFiles('chez-server/chez-server.cabal' )}}
cabal-${{ hashFiles('chez-grater/chez-grater.cabal') }}
cabal-
- uses: haskell/actions/setup@v1
with:
ghc-version: '8.10.7'
enable-stack: false
- run: cabal v2-update
- run: cabal v2-test all --test-log /dev/stdout --test-show-details always