Skip to content

Add a merge API for Set #393

Add a merge API for Set

Add a merge API for Set #393

Workflow file for this run

name: MicroHs CI for containers
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-mhs-containers:
runs-on: ubuntu-latest
steps:
- name: checkout containers repo
uses: actions/checkout@v4
with:
path: cont
# mhs
- name: checkout mhs repo
uses: actions/checkout@v4
with:
repository: augustss/MicroHs
ref: v0.15.0.0
path: mhs
- name: make and install mhs
run: |
cd mhs
make minstall
- name: compile and install containers package
run: |
PATH="$HOME/.mcabal/bin:$PATH"
cd cont/containers
mcabal -r install
- name: cleanup
run: |
rm -rf $HOME/.mcabal