We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed5628 commit 30b9187Copy full SHA for 30b9187
.github/workflows/hls.yml
@@ -113,4 +113,10 @@ jobs:
113
114
- name: Test HLS works
115
if: steps.check_trivial_changes.outputs.CHECK_HLS_WORKS > 0
116
- run: haskell-language-server
+ run: |
117
+ # workaround for https://github.com/haskell/haskell-language-server/issues/3735
118
+ cat <<EOF > hie.yaml
119
+ cradle:
120
+ cabal:
121
+ EOF
122
+ haskell-language-server
cardano-rpc/Setup.hs
@@ -1,3 +1,10 @@
1
+#!/usr/bin/env cabal
2
+{- cabal:
3
+build-depends: base, Cabal, proto-lens-setup
4
+-}
5
+
6
+-- this is a cabal script because of https://github.com/haskell/haskell-language-server/issues/3735
7
8
import Data.ProtoLens.Setup
9
10
main = defaultMainGeneratingProtos "proto"
0 commit comments