Add svn, experimentally restore mlkit #23
This file contains 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: macOS CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: deps | |
run: | | |
brew install mercurial mlton polyml mlkit subversion | |
brew install --cask smlnj | |
- name: prepare | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Nobody" | |
make clean # so we rebuild the aggregated repoint.sml | |
- name: make | |
run: make | |
- name: test | |
run: PATH=$(brew --prefix)/smlnj/bin:"$PATH" make test-all |