From f6759bcd1a0b5154d59a02020c25db26723ab766 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Tue, 14 May 2024 12:34:04 +0000 Subject: [PATCH] Add support for recent GHC versions up to `9.10.1`. --- .github/workflows/haskell-ci.yml | 15 +++++++++++++++ deepseq.cabal | 3 +++ 2 files changed, 18 insertions(+) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index fb90618..4f447a3 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -28,6 +28,21 @@ jobs: strategy: matrix: include: + - compiler: ghc-9.10.1 + compilerKind: ghc + compilerVersion: 9.10.1 + setup-method: ghcup + allow-failure: false + - compiler: ghc-9.8.2 + compilerKind: ghc + compilerVersion: 9.8.2 + setup-method: ghcup + allow-failure: false + - compiler: ghc-9.6.5 + compilerKind: ghc + compilerVersion: 9.6.5 + setup-method: ghcup + allow-failure: false - compiler: ghc-9.4.8 compilerKind: ghc compilerVersion: 9.4.8 diff --git a/deepseq.cabal b/deepseq.cabal index 8f9421a..09039c7 100644 --- a/deepseq.cabal +++ b/deepseq.cabal @@ -26,6 +26,9 @@ description: build-type: Simple tested-with: + GHC==9.10.1, + GHC==9.8.2, + GHC==9.6.5, GHC==9.4.8, GHC==9.2.8, GHC==9.0.2,