Skip to content

Commit 16421ca

Browse files
andreasabelandrewthad
authored andcommitted
Allow base-4.20 and tasty-1.5; bump CI to GHC 9.8
1 parent 9474209 commit 16421ca

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest]
19-
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6']
19+
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8']
2020
include:
2121
- os: windows-latest
2222
ghc: 'latest'
@@ -26,15 +26,15 @@ jobs:
2626
# - os: ubuntu-latest
2727
# ghc: 'latest'
2828
steps:
29-
- uses: actions/checkout@v3
30-
- uses: haskell/actions/setup@v2
29+
- uses: actions/checkout@v4
30+
- uses: haskell-actions/setup@v2
3131
id: setup-haskell-cabal
3232
with:
3333
ghc-version: ${{ matrix.ghc }}
3434
ghcup-release-channel: ${{ matrix.ghcup-release-channel }}
3535
- name: Update cabal package database
3636
run: cabal update
37-
- uses: actions/cache@v3
37+
- uses: actions/cache@v4
3838
name: Cache cabal stuff
3939
with:
4040
path: |

primitive.cabal

+6-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ Tested-With:
2626
GHC == 8.8.4
2727
GHC == 8.10.7
2828
GHC == 9.0.2
29-
GHC == 9.2.5
30-
GHC == 9.4.4
29+
GHC == 9.2.8
30+
GHC == 9.4.8
31+
GHC == 9.6.4
32+
GHC == 9.8.2
3133

3234
Library
3335
Default-Language: Haskell2010
@@ -55,7 +57,7 @@ Library
5557
Data.Primitive.Internal.Operations
5658
Data.Primitive.Internal.Read
5759

58-
Build-Depends: base >= 4.9 && < 4.20
60+
Build-Depends: base >= 4.9 && < 4.21
5961
, deepseq >= 1.1 && < 1.6
6062
, transformers >= 0.5 && < 0.7
6163
, template-haskell >= 2.11
@@ -90,7 +92,7 @@ test-suite test-qc
9092
, primitive
9193
, quickcheck-classes-base >= 0.6 && <0.7
9294
, QuickCheck >= 2.13 && < 2.15
93-
, tasty ^>= 1.2 || ^>= 1.3 || ^>= 1.4
95+
, tasty >= 1.2 && < 1.6
9496
, tasty-quickcheck
9597
, tagged
9698
, transformers >= 0.5

0 commit comments

Comments
 (0)