Skip to content

v0.1.0.1 revision 7: remove restrictive bounds, add CI for GHC 9.8 (#8) #7

v0.1.0.1 revision 7: remove restrictive bounds, add CI for GHC 9.8 (#8)

v0.1.0.1 revision 7: remove restrictive bounds, add CI for GHC 9.8 (#8) #7

Workflow file for this run

name: Build (Windows)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build (GHC ${{ matrix.ghc }})
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
ghc: ['9.8', '9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4']
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal build
- run: cabal haddock
- run: cabal check