Skip to content
name: selftest macos-14
on:
workflow_dispatch: null
schedule:
- cron: 0 0 2 * *
push:
branches:
- debug
jobs:
build:
name: ${{ matrix.os }} / GHC ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: setup-haskell
uses: ./
with:
ghc-version: ${{ matrix.ghc }}
- run: ghc --version
- run: cabal update
- run: cabal install alex
- run: alex --version
- run: ghcup list
strategy:
fail-fast: false
matrix:
os:
- macos-14
ghc:
- 9.10.1