Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into cabal-flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanbakel committed Feb 15, 2023
2 parents 54d924a + 428f294 commit 1b9d29c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
cabal:
name: cabal / ghc-${{matrix.ghc}} / ${{ matrix.os }}
continue-on-error: ${{ matrix.ghc == '9.4.2'}}
continue-on-error: ${{ matrix.ghc == '9.4.4'}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -22,8 +22,8 @@ jobs:
- "8.8.4"
- "8.10.7"
- "9.0.2"
- "9.2.4"
- "9.4.2"
- "9.2.5"
- "9.4.4"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -69,7 +69,8 @@ jobs:
- "--resolver lts-16" # GHC 8.8.4
- "--resolver lts-18" # GHC 8.10.7
- "--resolver lts-19" # GHC 9.0.2
- "--resolver nightly" # GHC 9.2.4
- "--resolver lts-20" # GHC 9.2.5
- "--resolver nightly" # GHC 9.4.4

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions password-types/password-types.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ library
build-depends:
base >= 4.9 && < 5
, bytestring < 1
, memory
, text < 1.3
, memory < 1
, text < 3
ghc-options:
-Wall
default-language:
Expand Down
8 changes: 4 additions & 4 deletions password/password.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ library
build-depends:
base >= 4.9 && < 5
, base64 >= 0.3 && < 0.5
, bytestring >= 0.10.8.1 && < 0.12
, cryptonite >= 0.15.1
, memory >= 0.14
, bytestring >= 0.9 && < 0.12
, cryptonite >= 0.15.1 && < 0.31
, memory < 1
, password-types < 2
, template-haskell
, text >= 1.2.2 && < 1.3
, text >= 1.2.2 && < 3
ghc-options:
-Wall
default-language:
Expand Down

0 comments on commit 1b9d29c

Please sign in to comment.