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
12 changes: 6 additions & 6 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.20250330
# version: 0.19.20250506
#
# REGENDATA ("0.19.20250330",["github","cabal.project"])
# REGENDATA ("0.19.20250506",["github","cabal.project"])
#
name: Haskell-CI
on:
Expand All @@ -37,9 +37,9 @@ jobs:
compilerVersion: 9.12.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.10.1
- compiler: ghc-9.10.2
compilerKind: ghc
compilerVersion: 9.10.1
compilerVersion: 9.10.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.8.4
Expand Down Expand Up @@ -111,8 +111,8 @@ jobs:
chmod a+x "$HOME/.ghcup/bin/ghcup"
- name: Install cabal-install
run: |
"$HOME/.ghcup/bin/ghcup" install cabal 3.14.1.1-p1 || (cat "$HOME"/.ghcup/logs/*.* && false)
echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.1.1-p1 -vnormal+nowrap" >> "$GITHUB_ENV"
"$HOME/.ghcup/bin/ghcup" install cabal 3.14.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
echo "CABAL=$HOME/.ghcup/bin/cabal-3.14.2.0 -vnormal+nowrap" >> "$GITHUB_ENV"
- name: Install GHC (GHCup)
if: matrix.setup-method == 'ghcup'
run: |
Expand Down
6 changes: 4 additions & 2 deletions core/test-framework.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Cabal-Version: 1.18
Name: test-framework
Version: 0.8.2.2
x-revision: 1

Category: Testing
Synopsis: Framework for running and organising tests, with HUnit and QuickCheck support
Description: Allows tests such as QuickCheck properties and HUnit test cases to be assembled into test groups, run in
Expand All @@ -16,7 +18,7 @@ Build-Type: Simple

Tested-With:
GHC == 9.12.2
GHC == 9.10.1
GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
Expand Down Expand Up @@ -111,7 +113,7 @@ Test-Suite test-framework-tests

-- Lower bounds from LTS-9.21 (GHC 8.0.2)
Build-Depends: HUnit >= 1.5.0.0
, QuickCheck >= 2.9.2 && < 2.16
, QuickCheck >= 2.9.2 && < 3
, base >= 4.9 && < 5
, random >= 1.1
, containers >= 0.5.7
Expand Down
4 changes: 2 additions & 2 deletions example/test-framework-example.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Build-Type: Simple

Tested-With:
GHC == 9.12.2
GHC == 9.10.1
GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
Expand All @@ -37,6 +37,6 @@ Executable test-framework-example

Build-Depends: base >= 4.9 && < 5
, HUnit >= 1.5.0.0 && < 1.7
, QuickCheck >= 2.9.2 && < 2.16
, QuickCheck >= 2.9.2 && < 3

Ghc-Options: -threaded
2 changes: 1 addition & 1 deletion hunit/test-framework-hunit.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Description: @HUnit@ support for the @test-framework@ package.

Tested-With:
GHC == 9.12.2
GHC == 9.10.1
GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
Expand Down
6 changes: 4 additions & 2 deletions quickcheck2/test-framework-quickcheck2.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Cabal-Version: 1.18
Name: test-framework-quickcheck2
Version: 0.3.0.6
x-revision: 1

Category: Testing
Synopsis: QuickCheck-2 support for the test-framework package.
License: BSD3
Expand All @@ -14,7 +16,7 @@ Description: Allows @QuickCheck-2@ properties to be used with the </pack

Tested-With:
GHC == 9.12.2
GHC == 9.10.1
GHC == 9.10.2
GHC == 9.8.4
GHC == 9.6.7
GHC == 9.4.8
Expand All @@ -41,7 +43,7 @@ Library
Exposed-Modules: Test.Framework.Providers.QuickCheck2

Build-Depends: test-framework == 0.8.*
, QuickCheck >= 2.9.2 && < 2.16
, QuickCheck >= 2.9.2 && < 3
, base >= 4.9 && < 5
, extensible-exceptions >= 0.1.1 && < 0.2.0
, random >= 1 && < 1.4
Expand Down