From 3fdcb3e254a0ea7ca7639bbc73ac51f44c4ebecb Mon Sep 17 00:00:00 2001 From: John Ericson Date: Sun, 6 Oct 2024 20:52:06 -0400 Subject: [PATCH] CI GHC 9.10 --- .github/workflows/haskell.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 0035ad9..0be96c1 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -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 }} @@ -16,6 +16,7 @@ jobs: - uses: haskell/actions/setup@v2 with: ghc-version: ${{ matrix.ghc }} + - name: Cache uses: actions/cache@v1 env: @@ -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