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: matrix:
ghc: ghc:
- "8.10.7" - "8.10.7"
- "9.2.2" - "9.2.5"
- "9.4.4"
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master' 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 name: Setup Haskell
with: with:
ghc-version: ${{ matrix.ghc }} ghc-version: ${{ matrix.ghc }}

View File

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