Bump deps and fix doctest for GHC 9.10 #61
Workflow file for this run
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: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
cabal: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
ghc: ["8.6.5", "8.8.4", "8.10.7", "9.0.2", "9.2.8", "9.4.8", "9.6.5", "9.8.2", "9.10.1"] | |
cabal: ["3.12.1.0"] | |
os: [ubuntu-latest, macOS-latest] | |
fail-fast: false | |
name: build and test (cabal) | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Haskell | |
uses: haskell/actions/setup@v1 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- run: | | |
cabal build --enable-tests && cabal test | |
stack: | |
name: build and test (stack) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: haskell/actions/setup@v1 | |
with: | |
ghc-version: "9.2.8" | |
enable-stack: true | |
stack-version: "latest" | |
- run: | | |
stack build && stack test |