Merge pull request #29 from jonathanlking/ghc-9.4

Support for GHC 9.4
This commit is contained in:
Tom Harding 2023-02-06 11:33:36 +00:00 committed by GitHub
commit 6b3bdbae03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -17,13 +17,14 @@ jobs:
matrix:
ghc:
- "8.10.7"
- "9.2.2"
- "9.2.5"
- "9.4.4"
steps:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
- uses: haskell/actions/setup@v1
- uses: haskell/actions/setup@v2
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}

View File

@ -38,7 +38,7 @@ library
test-suite doctests
build-depends: base
, base-compat >= 0.11 && < 0.13
, doctest >= 0.17 && < 0.20
, doctest >= 0.17 && < 0.22
, higgledy
, lens
, QuickCheck
@ -53,8 +53,8 @@ test-suite test
build-depends: base
, barbies
, higgledy
, hspec >= 2.6.1 && < 2.8
, lens >= 4.17 && < 5.2
, hspec >= 2.6.1 && < 2.11
, lens >= 4.17 && < 5.3
, QuickCheck
main-is: Main.hs
type: exitcode-stdio-1.0
@ -64,7 +64,7 @@ test-suite test
test-suite readme
build-depends: base
, barbies
, lens >= 4.17 && < 5.2
, lens >= 4.17 && < 5.3
, higgledy
, named ^>= 0.3.0.0
main-is: README.lhs