Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
cabal: ["3.6"]
ghc:
- "8.10.7"
- "9.0.2"

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 4 additions & 1 deletion iris.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.10.7
GHC == 9.0.2

source-repository head
type: git
location: https://github.com/chshersh/iris.git

common common-options
build-depends: base >= 4.14 && < 4.15
build-depends: base >= 4.14 && < 4.16

ghc-options: -Wall
-Wcompat
Expand All @@ -43,6 +44,8 @@ common common-options
-hiedir=.hie
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages
if impl(ghc >= 9.0)
ghc-options: -Winvalid-haddock

default-language: Haskell2010
default-extensions: ConstraintKinds
Expand Down