Skip to content

Try regressing Ubuntu. #12

Try regressing Ubuntu.

Try regressing Ubuntu. #12

Workflow file for this run

on: [push]
name: build
jobs:
cabal:
runs-on: 'ubuntu-22.04'
strategy:
matrix:
ghc: ['9.0', '9.4', '9.6', '9.8', '9.10', 'latest']
name: GHC ${{ matrix.ghc }}
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal build
stack:
runs-on: 'ubuntu-latest'
name: Stack
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
enable-stack: true
- run: stack build