Skip to content

Commit 75b0781

Browse files
authored
Add GHC 9.6 to CI (#30)
1 parent 12621a2 commit 75b0781

File tree

2 files changed

+13
-21
lines changed

2 files changed

+13
-21
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,13 @@ jobs:
2424
strategy:
2525
matrix:
2626
os: [ubuntu-latest, macOS-latest, windows-latest]
27-
cabal: [latest]
27+
cabal: ["3.8.1.0"]
2828
ghc:
29-
- "8.10.7"
30-
- "9.0.2"
31-
- "9.2.3"
32-
- "9.4.4"
33-
# exclude:
34-
# - os: macOS-latest
35-
# ghc: 8.8.4
36-
# - os: macOS-latest
37-
# ghc: 8.6.5
38-
# - os: windows-latest
39-
# ghc: 8.10.3
40-
# - os: windows-latest
41-
# ghc: 8.6.5
29+
- "8.10"
30+
- "9.0"
31+
- "9.2"
32+
- "9.4"
33+
- "9.6"
4234

4335
steps:
4436
- uses: actions/checkout@v3
@@ -91,13 +83,12 @@ jobs:
9183
strategy:
9284
matrix:
9385
ghc:
94-
- "8.10.7"
95-
- "9.0.2"
96-
- "9.2.3"
97-
- "9.4.4"
86+
- "9.0"
87+
- "9.2"
88+
- "9.4"
9889

9990
steps:
100-
- uses: actions/checkout@v2
91+
- uses: actions/checkout@v3
10192
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/dev'
10293

10394
- uses: haskell/actions/setup@v2

sendgrid-v3.cabal

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ cabal-version: >=1.10
1818
tested-with:
1919
GHC ==8.10.7
2020
|| ==9.0.2
21-
|| ==9.2.3
21+
|| ==9.2.7
2222
|| ==9.4.4
23+
|| ==9.6.1
2324
source-repository head
2425
type: git
2526
location: https://github.com/marcelbuesing/sendgrid-v3
@@ -30,7 +31,7 @@ library
3031
-- other-extensions:
3132
build-depends: aeson >= 1.3.0
3233
, containers
33-
, base >=4.8 && < 4.18
34+
, base >=4.8 && < 5
3435
, lens >= 4.13
3536
, semigroups >= 0.18
3637
, text >= 1.2

0 commit comments

Comments
 (0)