Hol2 #44
Workflow file for this run
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: ci_regression_tests | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
build-and-test-linux: | |
name: Build and test on linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install pre-requisites | |
run: | | |
sudo apt-get -y update | |
sudo apt-get install -y make mlton minisat spass cvc4 smlnj ml-yacc ml-ulex | |
- name: Build | |
env: | |
prefix: ${{ runner.temp }} | |
run: | | |
make smlnj | |
- name: Regression tests | |
run: | | |
make test | |