Skip to content

Commit

Permalink
Build with ghc-9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
coot committed Mar 27, 2023
1 parent d4f1f58 commit 6591acd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ghc: ["8.10.7", "9.0.2", "9.2.4", "9.4.2"]
ghc: ["8.10.7", "9.0.2", "9.2.4", "9.4.2", "9.6.1"]
env:
CONFIG: "--enable-tests"
steps:
Expand All @@ -25,6 +25,11 @@ jobs:
cabal-version: 3.6.2.0
- run: cabal update
- run: cabal freeze $CONFIG
# TODO: remove once hedgehog is compatible with ghc-9.6
- name: "Support ghc-9.6"
if: matrix.ghc == '9.6.1'
run: |
echo "allow-newer: hedgehog:template-haskell" >> cabal.project.local
- uses: actions/cache@v2
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
Expand Down
4 changes: 2 additions & 2 deletions nothunks.cabal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cabal-version: 2.4
cabal-version: 3.0
name: nothunks
version: 0.1.3
synopsis: Examine values for unexpected thunks
Expand All @@ -15,7 +15,7 @@ maintainer: [email protected]
copyright: 2018-2021 IOHK
category: Development
extra-source-files: CHANGELOG.md
tested-with: GHC==8.10.7, GHC==9.0.2, GHC==9.2.4, GHC==9.4.2
tested-with: GHC== { 8.10.7, 9.0.2, 9.2.4, 9.4.2, 9.6.1 }

source-repository head
type: git
Expand Down

0 comments on commit 6591acd

Please sign in to comment.