Skip to content

Commit

Permalink
Test with GHC 9.0.1 and 8.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Mar 6, 2021
1 parent cd0919c commit 896357f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: mrkkrp/ormolu-action@v1
- uses: mrkkrp/ormolu-action@v2
build-linux:
runs-on: ubuntu-latest
needs: ormolu
strategy:
matrix:
cabal: ["3.2"]
ghc: ["8.6.5", "8.8.4", "8.10.3"]
cabal: ["3.4"]
ghc: ["8.8.4", "8.10.4", "9.0.1"]
env:
CONFIG: "--enable-tests --enable-benchmarks --flags=dev"
steps:
Expand Down Expand Up @@ -49,8 +49,8 @@ jobs:
needs: ormolu
strategy:
matrix:
cabal: ["3.2"]
ghc: ["8.10.3"] # with older GHC dependencies fail to build
cabal: ["3.4"]
ghc: ["8.10.4", "9.0.1"]
env:
CONFIG: "--enable-tests --enable-benchmarks --flags=dev"
steps:
Expand Down
14 changes: 7 additions & 7 deletions path-io.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license: BSD3
license-file: LICENSE.md
maintainer: Mark Karpov <[email protected]>
author: Mark Karpov <[email protected]>
tested-with: ghc ==8.6.5 ghc ==8.8.4 ghc ==8.10.3
tested-with: ghc ==8.8.4 ghc ==8.10.4 ghc ==9.0.1
homepage: https://github.com/mrkkrp/path-io
bug-reports: https://github.com/mrkkrp/path-io/issues
synopsis: Interface to ‘directory’ package for users of ‘path’
Expand All @@ -29,8 +29,8 @@ library
exposed-modules: Path.IO
default-language: Haskell2010
build-depends:
base >=4.12 && <5.0,
containers -any,
base >=4.13 && <5.0,
containers,
directory >=1.3.2.0 && <1.4,
dlist >=0.8 && <2.0,
exceptions >=0.8 && <0.11,
Expand All @@ -39,7 +39,7 @@ library
temporary >=1.1 && <1.4,
time >=1.4 && <1.11,
transformers >=0.3 && <0.6,
unix-compat -any
unix-compat

if flag(dev)
ghc-options: -Wall -Werror
Expand All @@ -58,15 +58,15 @@ test-suite tests
hs-source-dirs: tests
default-language: Haskell2010
build-depends:
base >=4.12 && <5.0,
base >=4.13 && <5.0,
directory >=1.3.2.0 && <1.4,
exceptions >=0.8 && <0.11,
hspec >=2.0 && <3.0,
filepath >=1.2 && <1.5,
path >=0.6 && <0.9,
path-io -any,
path-io,
transformers >=0.3 && <0.6,
unix-compat -any
unix-compat

if flag(dev)
ghc-options: -Wall -Werror
Expand Down

0 comments on commit 896357f

Please sign in to comment.