From df7ccab50d361c7d1a3c00960faac883d98c2530 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Wed, 10 Aug 2022 21:32:04 +0100 Subject: [PATCH] Add GHC 9.4 CI job --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a0dc4043..3c497047 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,9 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2'] + # At the moment haskell/actions/setup does not know much about GHC 9.4, + # so we have to specify the version in full. + ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4.1'] steps: - uses: actions/checkout@v2