From fd27164a8bd7884491b84e058fc34e81ffff2b3d Mon Sep 17 00:00:00 2001 From: Kazu Yamamoto Date: Mon, 21 Oct 2024 08:53:42 +0900 Subject: [PATCH] using GHC 8.10 for CI --- .github/workflows/haskell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 5145c3f4..3472b2ac 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -67,7 +67,7 @@ jobs: fail-fast: false matrix: os: [ 'ubuntu-latest', 'macOS-latest', 'windows-latest' ] - ghc: [ '8.4', '9.4', '9.6', '9.8' ] + ghc: [ '8.10', '9.4', '9.6', '9.8' ] # Dependency hsc2hs does not build on Windows with GHC < 8.4 # so we test 8.4 as lowest. # See https://github.com/haskell/hsc2hs/issues/81