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
9 changes: 7 additions & 2 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.19.20250917
# version: 0.19.20260104
#
# REGENDATA ("0.19.20250917",["github","HTTP.cabal"])
# REGENDATA ("0.19.20260104",["github","HTTP.cabal"])
#
name: Haskell-CI
on:
Expand All @@ -35,6 +35,11 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.14.1
compilerKind: ghc
compilerVersion: 9.14.1
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.12.2
compilerKind: ghc
compilerVersion: 9.12.2
Expand Down
6 changes: 4 additions & 2 deletions HTTP.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Cabal-Version: 3.0
Name: HTTP
Version: 4000.5.0
x-revision: 1
Build-type: Simple
License: BSD-3-Clause
License-file: LICENSE
Expand Down Expand Up @@ -57,6 +58,7 @@ Description:
Extra-Source-Files: CHANGES

tested-with:
GHC == 9.14.1
GHC == 9.12.2
GHC == 9.10.3
GHC == 9.8.4
Expand Down Expand Up @@ -117,11 +119,11 @@ Library
-- note the test harness constraints should be kept in sync with these
-- where dependencies are shared
build-depends:
base >= 4.6.0.0 && < 4.22
base >= 4.6.0.0 && < 4.23
, array >= 0.3.0.2 && < 0.6
, bytestring >= 0.9.1.5 && < 0.13
, parsec >= 2.0 && < 3.2
, time >= 1.1.2.3 && < 1.15
, time >= 1.1.2.3 && < 1.16
, transformers >= 0.2.0.0 && < 0.7
-- transformers-0.2.0.0 is the first to have Control.Monad.IO.Class
-- The following dependencies are refined by flags, but they should
Expand Down