Skip to content

Update CI #600

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Jun 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc-version: ['9.10', '9.8', '9.6', '9.4', '9.2']
ghc-version: ['9.12', '9.10', '9.8', '9.6', '9.4']
# Unlikely that we'll succeed on windows and fail on macos,
# including it is just burning CI time. But windows could have
# path or IO issues, so worth including
Expand Down
8 changes: 3 additions & 5 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
index-state: 2024-12-23T14:00:00Z
index-state: 2025-06-07T00:00:00Z

packages:
./lsp
Expand All @@ -13,7 +13,5 @@ benchmarks: True
package lsp
flags: +demo

package lsp-types
-- This makes a big difference here as lsp-types
-- has very many independent modules
ghc-options: -j4
-- Useful if available
semaphore: true
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion lsp/src/Language/LSP/Server/Core.hs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,8 @@ defaultOptions = def
it is parameterized over a config type variable representing the type for the
specific configuration data the language server needs to use.
-}
data ServerDefinition config = forall m a.
data ServerDefinition config
= forall m a.
ServerDefinition
{ defaultConfig :: config
-- ^ The default value we initialize the config variable to.
Expand Down
Loading