Fix macos ci and, add lts-20/22, remove lts-14 #311
Workflow file for this run
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
name: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: CI | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
args: | |
- "--resolver lts-22" | |
- "--resolver lts-20" | |
- "--resolver lts-18" | |
- "--resolver lts-16" | |
- "--resolver lts-14" | |
# Bugs in GHC make it crash too often to be worth running | |
exclude: | |
- os: macos-latest | |
args: "--resolver lts-18" | |
- os: macos-latest | |
args: "--resolver lts-16" | |
- os: macos-latest | |
args: "--resolver lts-14" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'master' }} | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v4 | |
# Getting weird OS X errors... | |
# - name: Cache dependencies | |
# uses: actions/cache@v1 | |
# with: | |
# path: ~/.stack | |
# key: ${{ runner.os }}-${{ matrix.resolver }}-${{ hashFiles('stack.yaml') }} | |
# restore-keys: | | |
# ${{ runner.os }}-${{ matrix.resolver }}- | |
- name: Install stack if needed | |
shell: bash | |
run: | | |
set -ex | |
if [[ "${{ matrix.os }}" == "macos-latest" ]] | |
then | |
# macos-latest does not include Haskell tools as of 2024-05-06. | |
curl -sSL https://get.haskellstack.org/ | sh | |
fi | |
- name: Build and run tests | |
shell: bash | |
run: | | |
set -ex | |
stack --version | |
stack test --fast --no-terminal ${{ matrix.args }} |