Add test for 'defaultHandler unsets actionErrorHandler' (#339) (#356) #174
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
cabal: | |
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.10.7" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.0.2" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.2.8" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.4.6" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.2" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.3" } | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master' | |
- uses: haskell/actions/setup@v2 | |
id: setup-haskell-cabal | |
name: Setup Haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- uses: actions/cache@v1 | |
name: Cache ~/.cabal/store | |
with: | |
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
key: ${{ runner.os }}-${{ matrix.ghc }}--${{ github.Shah }}-cache | |
- name: Versions | |
run: | | |
cabal -V | |
ghc -V | |
- name: Build | |
run: | | |
cabal configure --haddock-all --enable-tests --enable-benchmarks --benchmark-option=-l | |
cabal build all --write-ghc-environment-files=always | |
- name: Test | |
run: | | |
cabal test all |