Debug PATH
[lsp-test.git] / .github / workflows / haskell.yml
index 87c9763e2b165e62fb82fb2daa61e8955e67ca12..e702893d87118f9f3ccdd253311b72f3c3b9b7fa 100644 (file)
@@ -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
+      run: cabal build
     - name: Run tests
-      run: cabal v2-test
+      run: |
+        echo $PATH
+        cabal test