File tree Expand file tree Collapse file tree 6 files changed +8
-29
lines changed Expand file tree Collapse file tree 6 files changed +8
-29
lines changed Original file line number Diff line number Diff line change 20
20
- uses : haskell/actions/setup@v1
21
21
with :
22
22
ghc-version : ${{ matrix.ghc }}
23
- cabal-version : ' 3.4 '
23
+ cabal-version : ' 3.6 '
24
24
25
25
- name : Cache
26
26
uses : actions/cache@v1
Original file line number Diff line number Diff line change 15
15
- uses : actions/checkout@v2
16
16
with :
17
17
submodules : true
18
- - uses : cachix/install-nix-action@v12
18
+ - uses : cachix/install-nix-action@v16
19
19
with :
20
20
nix_path : nixpkgs=channel:nixos-unstable
21
21
- run : nix-shell --run "cabal update && cabal build all"
Original file line number Diff line number Diff line change @@ -10,24 +10,3 @@ tests: True
10
10
benchmarks : True
11
11
test-show-details : direct
12
12
haddock-quickjump : True
13
-
14
- allow-newer :
15
- lens :template-haskell,
16
- cryptohash-sha1 :base,
17
- cryptohash-md5 :base,
18
- hslogger :base,
19
- entropy :Cabal,
20
-
21
- -- Required for ghc-9.0.1 support
22
- source-repository-package
23
- type : git
24
- location : https://github.com/anka-213/th-extras
25
- tag : 57a97b4df128eb7b360e8ab9c5759392de8d1659
26
- -- https://github.com/mokus0/th-extras/pull/8
27
-
28
- source-repository-package
29
- type : git
30
- location : https://github.com/anka-213/dependent-sum
31
- tag : 8cf4c7fbc3bfa2be475a17bb7c94a1e1e9a830b5
32
- subdir : dependent-sum-template
33
- -- https://github.com/obsidiansystems/dependent-sum/pull/57
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ test-suite func-test
99
99
main-is : FuncTest.hs
100
100
hs-source-dirs : func-test
101
101
type : exitcode-stdio-1.0
102
- build-depends : base < 4.16
102
+ build-depends : base
103
103
, lsp-test
104
104
, lsp
105
105
, data-default
@@ -124,7 +124,7 @@ benchmark simple-bench
124
124
main-is : SimpleBench.hs
125
125
hs-source-dirs : bench
126
126
type : exitcode-stdio-1.0
127
- build-depends : base < 4.16
127
+ build-depends : base
128
128
, lsp-test
129
129
, lsp
130
130
, process
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ library
70
70
, Language.LSP.Types.WorkspaceSymbol
71
71
-- other-extensions:
72
72
ghc-options : -Wall
73
- build-depends : base >= 4.11 && < 4.16
73
+ build-depends : base >= 4.11 && < 5
74
74
, aeson >= 1.2.2.0
75
75
, binary
76
76
, bytestring
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ library
31
31
, Language.LSP.Server.Control
32
32
, Language.LSP.Server.Processing
33
33
ghc-options : -Wall
34
- build-depends : base >= 4.11 && < 4.16
34
+ build-depends : base >= 4.11 && < 5
35
35
, async
36
36
, aeson >= 1.0.0.0
37
37
, attoparsec
@@ -67,7 +67,7 @@ executable lsp-demo-reactor-server
67
67
default-language : Haskell2010
68
68
ghc-options : -Wall -Wno-unticked-promoted-constructors
69
69
70
- build-depends : base >= 4.11 && < 4.16
70
+ build-depends : base
71
71
, aeson
72
72
, bytestring
73
73
, containers
@@ -91,7 +91,7 @@ executable lsp-demo-simple-server
91
91
hs-source-dirs : example
92
92
default-language : Haskell2010
93
93
ghc-options : -Wall -Wno-unticked-promoted-constructors
94
- build-depends : base >= 4.11 && < 5
94
+ build-depends : base
95
95
-- the package library. Comment this out if you want repl changes to propagate
96
96
, lsp
97
97
, text
You can’t perform that action at this time.
0 commit comments