Skip to content

Allow template-haskell 2.22 #69

Allow template-haskell 2.22

Allow template-haskell 2.22 #69

Workflow file for this run

on: [push, pull_request]
name: Cabal multi-version build
jobs:
build-ghc:
name: ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
matrix:
ghc: ['9.2', '9.4.8', '9.6.6', '9.8.2', '9.10.1']
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- run: |
sudo apt-get update
sudo apt-get install alex
- run: cabal v1-install --only-dependencies --enable-tests --enable-benchmarks
- run: cabal v1-configure --enable-tests --enable-benchmarks
- run: cabal v1-build
- run: cabal v1-test
- run: cabal v1-bench