From 9396a555af4c4d3de2df4b9ecdd47adf8773327c Mon Sep 17 00:00:00 2001 From: Andrey Mokhov Date: Sun, 19 Feb 2023 14:01:24 +0800 Subject: [PATCH] Be more explicit about tested GHC versions (#68) * 9.2.6 * 9.0.2 * 8.10.7 * 8.8.4 * 8.6.5 --- .github/workflows/ci.yml | 2 +- selective.cabal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce48341..80a4508 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - ghc: ['9.4.4', '9.2', '9.0', '8.10', '8.8', '8.6'] + ghc: ['9.4.4', '9.2.6', '9.0.2', '8.10.7', '8.8.4', '8.6.5'] include: - os: windows-latest - os: macOS-latest diff --git a/selective.cabal b/selective.cabal index 4c77e2e..1679d13 100644 --- a/selective.cabal +++ b/selective.cabal @@ -11,7 +11,7 @@ bug-reports: https://github.com/snowleopard/selective/issues category: Control build-type: Simple cabal-version: 1.18 -tested-with: GHC==9.4.4, GHC==9.2, GHC==9.0, GHC==8.10, GHC==8.8, GHC==8.6 +tested-with: GHC==9.4.4, GHC==9.2.6, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5 description: Selective applicative functors: declare your effects statically, select which to execute dynamically. .