Skip to content

Commit

Permalink
Merge pull request #151 from andreasabel/lens-5.3
Browse files Browse the repository at this point in the history
Allow QuickCheck 2.15 and lens 5.3; bump cabal CI to GHC 9.10
  • Loading branch information
cydparser authored Jul 3, 2024
2 parents fb1c818 + 4b2fc4b commit 07d7ac2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc:
Expand All @@ -36,12 +37,13 @@ jobs:
- "9.4"
- "9.6"
- "9.8"
- "9.10"
include:
- { os: macOS-latest, ghc: "9.8" }
- { os: windows-latest, ghc: "9.8" }

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up GHC ${{ matrix.ghc-version }}
uses: haskell-actions/setup@v2
Expand Down Expand Up @@ -78,10 +80,11 @@ jobs:
run: cabal build all

- uses: nikeee/setup-pandoc@v1
if: matrix.os == 'ubuntu-latest'
if: runner.os == 'Linux'

# Work is needed to get tests to pass on other OSes.
- name: Test
if: matrix.os == 'ubuntu-latest'
if: runner.os == 'Linux'
run: cabal test all

- name: Documentation
Expand Down
11 changes: 6 additions & 5 deletions heist.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ tested-with:
GHC == 8.10.7
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.7
GHC == 9.6.3
GHC == 9.8.1
GHC == 9.4.8
GHC == 9.6.5
GHC == 9.8.2
GHC == 9.10.1

extra-doc-files:
CHANGELOG.md
Expand Down Expand Up @@ -227,8 +228,8 @@ Test-suite testsuite

build-depends:
HUnit >= 1.2 && < 2,
QuickCheck >= 2 && < 2.15,
lens >= 4.3 && < 5.3,
QuickCheck >= 2 && < 2.16,
lens >= 4.3 && < 5.4,
test-framework >= 0.4 && < 0.9,
test-framework-hunit >= 0.2.7 && < 0.4,
test-framework-quickcheck2 >= 0.2.12.1 && < 0.4,
Expand Down

0 comments on commit 07d7ac2

Please sign in to comment.