X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=.github%2Fworkflows%2Fhaskell.yml;h=e4cdf76e2a374e073f0bf41cd65a654514df1c8f;hb=0980bdc3a13cc183ef4de6a00820d386c498d7f7;hp=87c9763e2b165e62fb82fb2daa61e8955e67ca12;hpb=860ba10766f52281e31fe1a778e290b30ac37676;p=lsp-test.git diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 87c9763..e4cdf76 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -9,17 +9,24 @@ jobs: steps: - uses: actions/checkout@v1 + - uses: actions/setup-haskell@v1 + with: + ghc-version: '8.6.5' + cabal-version: '3.0' + - run: cabal update - name: Install HIE run: | - apt upgrade ghc cabal-install pushd $HOME git clone https://github.com/haskell/haskell-ide-engine --recurse-submodules cd haskell-ide-engine - cabal v2-install hie - cabal v2-install hoogle + cabal install hie + cabal install hoogle + export PATH=$PATH:$HOME/.cabal/bin hoogle generate popd - name: Build - run: cabal v2-build - - name: Run tests - run: cabal v2-test + run: cabal build + - name: Test + run: | + export PATH=$PATH:$HOME/.cabal/bin + cabal test