Skip to content

Commit

Permalink
Merge pull request #2 from obsidiansystems/bumps
Browse files Browse the repository at this point in the history
Bump bounds
  • Loading branch information
alexfmpe authored Jan 14, 2025
2 parents 532a330 + 6195b81 commit 4b64ff0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: github-action

on: [push, pull_request]
on: [push, pull_request]

jobs:
build:
strategy:
matrix:
ghc: ['8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.6.1']
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10']
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}

Expand All @@ -16,7 +16,6 @@ jobs:
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: '3.10.1.0'
- name: Cache
uses: actions/cache@v3
env:
Expand All @@ -34,9 +33,12 @@ jobs:
run: |
cabal update
cabal build --only-dependencies --enable-tests --enable-benchmarks
- name: Build
run: cabal build --enable-tests --enable-benchmarks all

- name: Run tests
run: cabal test --enable-tests all

- name: Build Docs
run: cabal haddock
6 changes: 3 additions & 3 deletions bytestring-aeson-orphans.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ library
hs-source-dirs: src

build-depends:
aeson >= 1.4 && < 2.2
aeson >= 1.4 && < 2.3
, base >= 4.10 && < 5
, base64-bytestring >= 1.0 && < 1.3
, bytestring >= 0.10 && < 0.12
, text >= 1 && < 2.1
, bytestring >= 0.10 && < 0.13
, text >= 1 && < 2.2

exposed-modules: ByteString.Aeson.Orphans

Expand Down

0 comments on commit 4b64ff0

Please sign in to comment.