Docker solvers #336
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: Run Unit Test on Linux and Mac OS | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
Linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install Packages | |
run: sudo apt-get install zlib1g-dev make cmake picosat | |
- uses: actions/checkout@v1 | |
- name: Run mergesat release unit tests | |
run: make run-tests-r-all | |
- name: Run mergesat debug unit tests | |
run: make run-tests-d-all | |
MacOS: | |
runs-on: macos-latest | |
steps: | |
- name: Install Packages | |
run: brew install libzip | |
- uses: actions/checkout@v1 | |
- name: Run mergesat release unit tests | |
run: make run-tests-r-all | |
- name: Run mergesat debug unit tests | |
run: make run-tests-d-all |