Skip to content

Commit

Permalink
CI GHC 9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Ericson2314 authored Oct 7, 2024
1 parent 4dc3850 commit 3fdcb3e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 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.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.8', '9.4.8', '9.6.3', '9.8.1']
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.8', '9.4.8', '9.6.3', '9.8.1', '9.10.1']
os: ['ubuntu-latest', 'macos-latest']
runs-on: ${{ matrix.os }}

Expand All @@ -16,6 +16,7 @@ jobs:
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}

- name: Cache
uses: actions/cache@v1
env:
Expand All @@ -33,7 +34,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

0 comments on commit 3fdcb3e

Please sign in to comment.