Skip to content

Commit 1a4bd38

Browse files
authored
Support ghc-9.8. (#37)
1 parent 304f587 commit 1a4bd38

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
1616
runs-on: ${{ matrix.os }}
1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
os: [ubuntu-latest, macOS-latest, windows-latest]
2021
cabal: ['latest']
@@ -27,8 +28,11 @@ jobs:
2728
- '9.0.2'
2829
- '9.2.8'
2930
- '9.4.7'
30-
- '9.6.2'
31+
- '9.6.3'
32+
- '9.8.1'
3133
exclude:
34+
- os: macOS-latest
35+
ghc: 9.6.3
3236
- os: macOS-latest
3337
ghc: 9.4.7
3438
- os: macOS-latest
@@ -46,6 +50,8 @@ jobs:
4650
- os: macOS-latest
4751
ghc: 8.2.2
4852

53+
- os: windows-latest
54+
ghc: 9.6.3
4955
- os: windows-latest
5056
ghc: 9.4.7
5157
- os: windows-latest

co-log-core.cabal

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,15 @@ tested-with: GHC == 8.2.2
4141
GHC == 9.0.2
4242
GHC == 9.2.8
4343
GHC == 9.4.7
44-
GHC == 9.6.2
44+
GHC == 9.6.3
45+
GHC == 9.8.1
4546

4647
source-repository head
4748
type: git
4849
location: https://github.com/co-log/co-log-core.git
4950

5051
common common-options
51-
build-depends: base >= 4.10.1.0 && < 4.19
52+
build-depends: base >= 4.10.1.0 && < 4.20
5253

5354
ghc-options: -Wall
5455
-Wcompat

0 commit comments

Comments
 (0)