ci #388
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
# 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 |