Skip to content

Commit

Permalink
Extend CI matrix (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim committed Apr 24, 2023
1 parent fa0405a commit 999650e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4']
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6']
include:
- os: macOS-latest
ghc: 'latest'
Expand Down Expand Up @@ -63,12 +63,16 @@ jobs:
windows-build:
runs-on: windows-latest
needs: build
strategy:
fail-fast: true
matrix:
ghc: ['9.2', '9.4', '9.6']
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: 'latest'
ghc-version: ${{ matrix.ghc }}
- name: Update cabal package database
run: cabal update
- uses: actions/cache@v2
Expand All @@ -77,7 +81,7 @@ jobs:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
key: ${{ runner.os }}-latest
key: ${{ runner.os }}-${{ matrix.ghc }}
# We rebuild tests several times to avoid intermittent failures on Windows
# https://github.com/haskell/actions/issues/36
# We also use --enable-tests and --enable-benchmarks to avoid
Expand Down

0 comments on commit 999650e

Please sign in to comment.