Bump base to < 4.21 #297
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 ghc-9.8.1" | |
- "--resolver ghc-9.6.3" | |
- "--resolver ghc-9.4.7" | |
- "--resolver ghc-9.2.8" | |
- "--resolver ghc-9.0.1" | |
- "--resolver ghc-8.10.4" | |
- "--resolver ghc-8.8.4" | |
- "--resolver ghc-8.6.5" | |
- "--resolver ghc-8.4.4" | |
- "--resolver ghc-8.2.2" | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v4 | |
- name: Build and run tests | |
shell: bash | |
run: | | |
set -ex | |
stack upgrade | |
stack --version | |
if [[ "${{ runner.os }}" = 'Windows' ]] | |
then | |
# Looks like a bug in Stack, this shouldn't break things | |
ls C:/ProgramData/Chocolatey/bin/ | |
rm -rf C:/ProgramData/Chocolatey/bin/ghc* | |
stack ${{ matrix.args }} exec pacman -- --sync --refresh --noconfirm autoconf | |
fi | |
stack test --bench --no-run-benchmarks --haddock --no-terminal ${{ matrix.args }} | |
stack sdist --test-tarball |