Skip to content

Upgrade to add Eq/Ord for Match #6

Upgrade to add Eq/Ord for Match

Upgrade to add Eq/Ord for Match #6

Workflow file for this run

name: Haskell CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-haskell@v1
with:
ghc-version: '8.6.5'
cabal-version: '3.0'
- name: Install dependencies
run: |
cabal update
cabal new-build --only-dependencies
- name: Build
run: |
cabal new-configure --enable-tests
cabal new-build
- name: Run tests
run: cabal new-test