Skip to content

Commit

Permalink
CI 9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Ericson2314 committed Oct 4, 2024
1 parent 5f438a6 commit a428a50
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
name: github-action

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

jobs:
build:
strategy:
matrix:
ghc: ['8.6.5', '8.8.4', '8.10.7']
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.5', '9.4.5', '9.6.1', '9.8.2', '9.10.1']
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}

name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
steps:

- uses: actions/checkout@v3

- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}

- name: Cache
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: cache-cabal
with:
Expand All @@ -33,7 +36,9 @@ 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 all
run: cabal test --enable-tests all
2 changes: 1 addition & 1 deletion dependent-sum-aeson-orphans.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ library
exposed-modules: Data.Dependent.Sum.Orphans
build-depends:
aeson >=1.2 && <2.3
, base >=4.9 && <4.20
, base >=4.9 && <4.21
, constraints >=0.10.1 && <0.15
, constraints-extras >=0.3.0 && <0.5
, dependent-map >=0.3 && <0.5
Expand Down

0 comments on commit a428a50

Please sign in to comment.