From 782717f7439cb9cbd90272597a1b1d9ba8ca7664 Mon Sep 17 00:00:00 2001 From: Luke Lau Date: Wed, 6 Nov 2019 01:14:37 +0000 Subject: [PATCH] Try testing now --- .github/workflows/haskell.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 7663781b..1777249a 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -24,23 +24,26 @@ jobs: - uses: actions/checkout@v1 with: submodules: recursive + - uses: bubba/setup-haskell@macos-ghcup with: ghc-version: ${{matrix.ghc}} cabal-version: '3.0' - + - name: Cache uses: actions/cache@v1 with: path: dist-newstyle key: ${{ runner.OS }}-${{ matrix.ghc }}-dist-newstyle - + - name: Install dependencies run: | cabal update cabal install hoogle hoogle generate + - name: Build run: cabal build -# - name: Run tests -# run: cabal test + + - name: Run tests + run: cabal test