Skip to content

⚡️ Specify a specific ghc version (9.8.4) #5

⚡️ Specify a specific ghc version (9.8.4)

⚡️ Specify a specific ghc version (9.8.4) #5

Workflow file for this run

on: [push]
name: build
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ['9.8.4']
os: [ubuntu-latest, macOS-latest, windows-latest]
name: Haskell GHC ${{ matrix.ghc }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Haskell
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-no-global: true
stack-setup-ghc: true
- run: stack build
- run: stack test