From 451d529057d33d69bc06e9727ab4947c1a4a21ea Mon Sep 17 00:00:00 2001 From: jappeace-sloth Date: Fri, 6 Mar 2026 20:14:28 +0000 Subject: [PATCH] Add GHC 9.2, 9.4, 9.6 to CI matrix crypton depends on ram and needs to support these GHC versions. Adding them to CI to verify ram builds correctly on older GHCs. Prompt: crypton is failing on GHC 9.2, 9.4, 9.6. figure out why and make a plan to address it Co-Authored-By: Claude Opus 4.6 --- .github/workflows/cabal.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cabal.yaml b/.github/workflows/cabal.yaml index 0854cde..80eb2ba 100644 --- a/.github/workflows/cabal.yaml +++ b/.github/workflows/cabal.yaml @@ -12,6 +12,9 @@ jobs: fail-fast: false matrix: ghc: + - '9.2' + - '9.4' + - '9.6' - '9.8' - '9.10' os: [ubuntu-latest, macOS-latest, windows-latest]