[WIP] fix CI #148
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
# Build every pull request, to check for regressions. | |
pull_request: | |
types: [opened, synchronize] | |
# Build when a PR is merged, to update the README's CI badge. | |
push: | |
branches: [main] | |
# Build once a month, to detect missing upper bounds. | |
schedule: | |
- cron: '0 0 1 * *' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
ghc: ['8.6.5', '8.8.4'] | |
cabal: ['2.4.1.0', '3.0.0.0'] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
exclude: | |
# GHC 8.8+ only works with cabal v3+ | |
- ghc: 8.8.4 | |
cabal: 2.4.1.0 | |
name: Haskell GHC ${{ matrix.ghc }} sample | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Haskell | |
uses: haskell/actions/setup@v2 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- run: runhaskell Hello.hs |