Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Haskell
uses: haskell-actions/setup@v2
with:
ghc-version: 'latest'
enable-stack: true
stack-version: 'latest'
- name: Build
run: stack build free-foil-hm
- name: Test
run: stack test