Skip to content

Remove ghc-source-gen pin and include the tests into the plan (#501) #131

Remove ghc-source-gen pin and include the tests into the plan (#501)

Remove ghc-source-gen pin and include the tests into the plan (#501) #131

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/checkout@v4.2.2
with:
submodules: true
- uses: haskell-actions/setup@f5975f0810e252c045abd64a590c955a63f848db # v2.7.8
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