Add a merge API for Set #393
Workflow file for this run
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: 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 | |