Skip to content

Commit

Permalink
Allow base from GHC 9.0 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
int-index authored Mar 12, 2021
1 parent c861336 commit 3e02d92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ jobs:
- "8.6.5"
- "8.8.4"
- "8.10.4"
- "9.0.1"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-haskell@v1
- uses: haskell/actions/setup@v1
with:
cabal-version: "3.2"
cabal-version: "3.4"
ghc-version: ${{ matrix.ghc-version }}
- name: Cache
uses: actions/cache@v1
Expand Down
6 changes: 3 additions & 3 deletions shower.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ library
Shower.Parser
Shower.Class
build-depends:
base >=4.10 && <4.15,
base >=4.10 && <4.16,
megaparsec,
pretty
hs-source-dirs: lib
Expand All @@ -38,7 +38,7 @@ library
executable shower
main-is: Main.hs
build-depends:
base >=4.10 && <4.15,
base >=4.10 && <4.16,
shower
hs-source-dirs: exe
default-language: Haskell2010
Expand All @@ -50,7 +50,7 @@ test-suite shower-tests
Property
type: exitcode-stdio-1.0
build-depends:
base >=4.10 && <4.15,
base >=4.10 && <4.16,
aeson,
tasty,
tasty-golden,
Expand Down

0 comments on commit 3e02d92

Please sign in to comment.