Skip to content

Merge pull request #1 from shayne-fletcher/basic-workflow #1

Merge pull request #1 from shayne-fletcher/basic-workflow

Merge pull request #1 from shayne-fletcher/basic-workflow #1

Workflow file for this run

name: ci
on:
push:
pull_request:
schedule:
- cron: '0 3 * * 6' # 3am Saturday
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
ghc: ['9.8', '9.6', '9.4']
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal new-build all