Skip to content

Commit

Permalink
Merge pull request #103 from jhrcek/jhrcek/ghc-9.10
Browse files Browse the repository at this point in the history
Bump containers upper bound, add ghc 9.10 to CI
  • Loading branch information
phadej authored May 16, 2024
2 parents 8783bf7 + c773974 commit c9c74e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ghc: [ '8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.8', '9.4.7', '9.6.3', '9.8.1' ]
ghc: [ '8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.8', '9.4.8', '9.6.5', '9.8.2', '9.10.1' ]
steps:
- uses: actions/checkout@v4
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: '3.4'
cabal-version: '3.10'

- name: cabal Cache
uses: actions/cache@v3
Expand Down
5 changes: 3 additions & 2 deletions witherable/witherable.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ copyright: Copyright (c) 2014 Fumiaki Kinoshita
category: Data
build-type: Simple
extra-source-files: CHANGELOG.md
tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.1 || ==9.2.1
tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 ||
==9.0.1 || ==9.2.8 || ==9.4.8 || ==9.6.5 || ==9.8.2 || ==9.10.1

source-repository head
type: git
Expand All @@ -24,7 +25,7 @@ library
Witherable
build-depends: base >=4.9 && <5,
base-orphans >=0.8.4 && <0.10,
containers >=0.5.7.1 && <0.7,
containers >=0.5.7.1 && <0.8,
hashable >=1.2.7.0 && <1.5,
transformers >=0.5.2.0 && <0.7,
unordered-containers >=0.2.12.0 && <0.3,
Expand Down

0 comments on commit c9c74e5

Please sign in to comment.