From e9bb9adf3fecde10c95f6b55fb556ca36d89febf Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Tue, 30 Apr 2024 06:01:41 +0000 Subject: [PATCH] Exclude `macOS` GHC versions `8.10` and `9.0` from CI build matrix. This is to work around the following issue: https://github.com/IntersectMBO/bech32/issues/72 --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 572ecfc..d46c36e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,13 @@ jobs: - '9.4' - '9.6' - '9.8' + exclude: + # TODO: https://github.com/IntersectMBO/bech32/issues/72 + # To work around the above issue, we exclude the following versions: + - os: macOS-latest + ghc: '8.10' + - os: macOS-latest + ghc: '9.0' steps: - name: Checkout uses: actions/checkout@v4