Skip to content

Update versions and changelogs. (#498) #125

Update versions and changelogs. (#498)

Update versions and changelogs. (#498) #125

Workflow file for this run

on:
- push
- pull_request
name: cabal build
jobs:
runhaskell:
name: cabal test
runs-on: ubuntu-latest
strategy:
matrix:
version:
- ghc: 9.10.1
cabal: 3.12.1.0
steps:
- uses: actions/[email protected]
with:
submodules: true
- uses: haskell-actions/setup@dd344bc1cec854a369df8814ce17ef337d6e6170 # v2.7.6
with:
ghc-version: ${{ matrix.version.ghc }}
cabal-version: ${{ matrix.version.cabal }}
- run: cabal build --dependencies-only --project-file ghc${{ matrix.version.ghc }}.cabal.project all
- run: cabal build --project-file ghc${{ matrix.version.ghc }}.cabal.project all
- run: cabal test --project-file ghc${{ matrix.version.ghc }}.cabal.project all