Add definition and samples for Yoneda and Coyoneda #76
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 install --only-dependencies --lib | |
- name: Build | |
run: | | |
cabal configure --enable-tests | |
cabal build | |
- name: Run tests | |
run: cabal test |