Skip to content

Start testing with newer GHC versions #370

Start testing with newer GHC versions

Start testing with newer GHC versions #370

Workflow file for this run

# Adapted from: https://github.com/ndmitchell/hlint/blob/master/.github/workflows/ci.yml
name: ci
on:
push:
pull_request:
schedule:
- cron: '0 3 * * 6' # 3am Saturday
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ['9.8.2', '9.6.3', '9.4.7', '9.2.8', '9.0.2', '8.10.7', '8.8.4', '8.6.5']
include:
- os: windows-latest
# Testing on MacOS is disabled until GitHub actions support 'allow-failure'
# - os: macOS-latest
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- uses: haskell-actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
- name: Get GHC libdir
id: get-ghc-libdir
run: |
echo "name=libdir::$(ghc --print-libdir)" >> $GITHUB_OUTPUT
shell: bash
- run: cabal v2-freeze --enable-tests
- uses: actions/cache@v2
with:
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ steps.get-ghc-libdir.outputs.libdir }}-${{ hashFiles('cabal.project.freeze') }}
- uses: snowleopard/neil@master
with:
github-user: snowleopard