Skip to content

v2.0.0

v2.0.0 #5

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
ghc-version: "9.4.5"
enable-stack: true
stack-version: "latest"
- uses: actions/cache@v2
name: Cache ~/.stack ~/.cabal
with:
path: |
~/.stack
~/.cabal
key: ${{ runner.os }}-store-${{ hashFiles('stack.yaml.lock') }}-${{ hashFiles('fortytwo.cabal') }}
- name: Build
run: make build
- name: Test
run: make test