Skip to content

Commit 9a87289

Browse files
authored
Merge branch 'master' into mpj/hashable
2 parents b09d6a9 + fe75575 commit 9a87289

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/haskell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
ghc: ['9.4.3', '9.2.5', '9.0.2', '8.10.7']
17+
ghc: ['9.6', '9.4', '9.2', '9.0', '8.10']
1818
# Unlikely that we'll succeed on windows and fail on macos,
1919
# including it is just burning CI time. But windows could have
2020
# path or IO issues, so worth including

lsp-test/src/Language/LSP/Test/Session.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ import Control.Lens hiding (List, Empty)
4343
import Control.Monad
4444
import Control.Monad.Catch (MonadThrow)
4545
import Control.Monad.Except
46+
import Control.Monad.IO.Class
47+
import Control.Monad.Trans.Class
4648
#if __GLASGOW_HASKELL__ == 806
4749
import Control.Monad.Fail
4850
#endif

lsp-types/test/URIFilePathSpec.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ import qualified System.OsPath as OsPath
1818
#endif
1919

2020
import Control.Monad (when)
21+
import Control.Exception (throwIO)
2122
import Data.List
23+
import Data.Maybe (fromJust)
2224
import Data.Text (Text, pack)
2325
import Language.LSP.Protocol.Types
2426

0 commit comments

Comments
 (0)