Skip to content

Commit

Permalink
ci: Build with GHC 9.6.4 via Cabal
Browse files Browse the repository at this point in the history
This confirms that building with GHC 9.6.x works already, even if we can't
switch to it for the nix and stack builds, yet.
  • Loading branch information
wolfgangwalther committed Jan 21, 2024
1 parent 54f7865 commit 90c262e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:
Build-Cabal:
strategy:
matrix:
ghc: ['9.4.8']
ghc: ['9.4.8', '9.6.4']
fail-fast: false
name: Build Linux (Cabal, GHC ${{ matrix.ghc }})
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions postgrest.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ library
PostgREST.Response.Performance
PostgREST.Version
other-modules: Paths_postgrest
build-depends: base >= 4.9 && < 4.18
build-depends: base >= 4.9 && < 4.19
, HTTP >= 4000.3.7 && < 4000.5
, Ranged-sets >= 0.3 && < 0.5
, aeson >= 2.0.3 && < 2.2
Expand Down Expand Up @@ -107,7 +107,7 @@ library
, jose >= 0.8.5.1 && < 0.11
, lens >= 4.14 && < 5.3
, lens-aeson >= 1.0.1 && < 1.3
, mtl >= 2.2.2 && < 2.3
, mtl >= 2.2.2 && < 2.4
, network >= 2.6 && < 3.2
, network-uri >= 2.6.1 && < 2.8
, optparse-applicative >= 0.13 && < 0.18
Expand Down Expand Up @@ -159,7 +159,7 @@ executable postgrest
NoImplicitPrelude
hs-source-dirs: main
main-is: Main.hs
build-depends: base >= 4.9 && < 4.18
build-depends: base >= 4.9 && < 4.19
, containers >= 0.5.7 && < 0.7
, postgrest
, protolude >= 0.3.1 && < 0.4
Expand Down Expand Up @@ -233,7 +233,7 @@ test-suite spec
Feature.RollbackSpec
Feature.RpcPreRequestGucsSpec
SpecHelper
build-depends: base >= 4.9 && < 4.18
build-depends: base >= 4.9 && < 4.19
, aeson >= 2.0.3 && < 2.2
, aeson-qq >= 0.8.1 && < 0.9
, async >= 2.1.1 && < 2.3
Expand Down Expand Up @@ -275,7 +275,7 @@ test-suite doctests
NoImplicitPrelude
hs-source-dirs: test/doc
main-is: Main.hs
build-depends: base >= 4.9 && < 4.18
build-depends: base >= 4.9 && < 4.19
, doctest >= 0.8
, postgrest
, pretty-simple
Expand Down

0 comments on commit 90c262e

Please sign in to comment.