Skip to content

ci: Test on LTS-20 and LTS-22 #39

ci: Test on LTS-20 and LTS-22

ci: Test on LTS-20 and LTS-22 #39

Workflow file for this run

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
resolver:
- nightly
- lts-22
- lts-20
- lts-18
- lts-16
- lts-14
steps:
- name: Clone project
uses: actions/checkout@v2
- name: Build and run tests
shell: bash
run: |
set -ex
stack upgrade --force-download
stack --version
stack test --fast --no-terminal --resolver=${{ matrix.resolver }}