diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2792da70..22ae7064 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: name: cabal test - GHC ${{ matrix.ghc-version }} strategy: matrix: - ghc-version: [96, 98, 910, 912] + ghc-version: [94, 96, 98, 910, 912] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/flake.nix b/flake.nix index 5a39915d..468af1b9 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ stack-ghc-version = "ghc9103"; # Versions used by CI's Cabal-based matrix - ci-ghc-versions = ["96" "98" "910" "912"]; + ci-ghc-versions = ["94" "96" "98" "910" "912"]; cabal-docspec = import ./nix/cabal-docspec.nix { inherit pkgs; };