Skip to content

notice of hiatus

notice of hiatus #135

Workflow file for this run

name: Stack CI
# Trigger the workflow on push or pull request, but only for the master branch
on:
pull_request:
push:
jobs:
stack:
name: ${{ matrix.os }}-${{ matrix.ghc }}-stack
runs-on: ${{ matrix.os }}
strategy:
matrix:
stack: ["2.3.3"]
ghc: ["8.10.4"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
- uses: actions/[email protected]
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}
stack-version: ${{ matrix.stack }}
enable-stack: true
- uses: actions/cache@v1
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-stack
- name: Test
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
run: |
stack test