Skip to content

Commit

Permalink
Merge pull request #79 from obsidiansystems/ghc-9.6
Browse files Browse the repository at this point in the history
GHC 9.6
  • Loading branch information
Ericson2314 authored Jul 11, 2023
2 parents 26e0f87 + 6db0b23 commit b066b50
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
strategy:
matrix:
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.1', '9.4.3']
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.5', '9.4.5', '9.6.1']
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}

Expand All @@ -17,7 +17,7 @@ jobs:
with:
ghc-version: ${{ matrix.ghc }}
- name: Cache
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: cache-cabal
with:
Expand All @@ -30,10 +30,10 @@ jobs:
${{ runner.os }}
- name: Install dependencies
run: cabal build all --only-dependencies --enable-tests --enable-benchmarks
run: cabal build --only-dependencies --enable-tests --enable-benchmarks
- name: Build
run: cabal build --enable-tests --enable-benchmarks all
- name: Run tests
run: cabal test all
run: cabal test --enable-tests all
- name: Build Docs
run: cabal haddock all
run: cabal haddock
5 changes: 4 additions & 1 deletion dependent-sum.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ tested-with: GHC == 8.6.5,
GHC == 8.8.4,
GHC == 8.10.7,
GHC == 9.0.1,
GHC == 9.4.3
GHC == 9.0.2,
GHC == 9.2.5,
GHC == 9.4.5,
GHC == 9.6.1

extra-source-files: ChangeLog.md
, examples/*.hs
Expand Down

0 comments on commit b066b50

Please sign in to comment.