From 2d7d83b0681aa83146888a886880b51032de29c2 Mon Sep 17 00:00:00 2001 From: Ali Abrar Date: Mon, 27 May 2024 22:46:26 -0400 Subject: [PATCH] ci: re-add older GHCs that are listed as supported in the cabal file --- .github/workflows/Cabal.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Cabal.yml b/.github/workflows/Cabal.yml index 0c81cb5..8267e92 100644 --- a/.github/workflows/Cabal.yml +++ b/.github/workflows/Cabal.yml @@ -8,7 +8,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - ghc: ['8.6', '8.10', '9.4', '9.6', '9.8', '9.10'] + ghc: ['8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10'] include: - ghc: '9.10' os: 'macos-latest' @@ -65,3 +65,4 @@ jobs: - name: Build documentation run: cabal haddock all + if: matrix.ghc != '8.2' && matrix.ghc != '8.4'