Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# We must always use the latest version of cabal because
# otherwise ghc-paths, which is a dependency of doctest,
# can't be configured.
cabal: ["3.10"]
cabal: ["3.16"]
ghc:
- "8.6.5"
- "8.8.3"
Expand All @@ -33,6 +33,7 @@ jobs:
- "9.8.1"
- "9.10.1"
- "9.12.1"
- "9.14.1"

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ packages:
trial-example
trial-optparse-applicative
trial-tomland

allow-newer: boring:base
2 changes: 1 addition & 1 deletion trial-example/trial-example.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ source-repository head


common common-options
build-depends: base >= 4.12.0.0 && < 4.22
build-depends: base >= 4.12.0.0 && < 4.23
, trial
, trial-optparse-applicative
, trial-tomland
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ source-repository head
location: https://github.com/kowainik/trial.git

common common-options
build-depends: base >= 4.12.0.0 && < 4.22
build-depends: base >= 4.12.0.0 && < 4.23

ghc-options: -Wall
-Wcompat
Expand Down
4 changes: 2 additions & 2 deletions trial-tomland/trial-tomland.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ source-repository head
location: https://github.com/kowainik/trial.git

common common-options
build-depends: base >= 4.12.0.0 && < 4.22
build-depends: base >= 4.12.0.0 && < 4.23

ghc-options: -Wall
-Wcompat
Expand Down Expand Up @@ -72,4 +72,4 @@ library
build-depends: text >= 1.2.3 && < 2.2
, tomland ^>= 1.3.0.0
, trial ^>= 0.0.0.0
exposed-modules: Trial.Tomland
exposed-modules: Trial.Tomland
2 changes: 1 addition & 1 deletion trial/trial.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ source-repository head
location: https://github.com/kowainik/trial.git

common common-options
build-depends: base >= 4.12.0.0 && < 4.22
build-depends: base >= 4.12.0.0 && < 4.23

ghc-options: -Wall
-Wcompat
Expand Down
Loading