Skip to content

Move to GitHub actions. #4

Move to GitHub actions.

Move to GitHub actions. #4

Workflow file for this run

on: [push]
name: build
jobs:
cabal:
runs-on: 'ubuntu-latest'
strategy:
matrix:
ghc: ['8.4', '9.4', 'latest']
name: GHC ${{ matrix.ghc }}
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal install && cabal test
stack:
runs-on: 'ubuntu-latest'
name: Stack
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
with:
enable-stack: ${{ matrix.stack }}
- run: stack test