Skip to content

ci: Try using haskell-actions/setup #8

ci: Try using haskell-actions/setup

ci: Try using haskell-actions/setup #8

Workflow file for this run

on: [push]
name: build
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ['9.2.3', '9.4.5', '9.6.6', '9.8.4', '9.10.1']
cabal: ['3.14.1.1']
os: [ubuntu-latest, macOS-latest, windows-latest]
name: "${{ matrix.os }} - ${{ matrix.ghc }}"
steps:
- uses: actions/checkout@v4
- name: Setup Haskell
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: cabal check
- run: cabal update
- run: cabal build
- run: cabal test --test-show-details=direct