Cleanup #292
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: Build and Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, dev ] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: configure | |
run: | | |
sudo apt update | |
sudo apt install libglfw3 | |
sudo apt install libsuitesparse-dev | |
sudo apt install liblapacke-dev | |
python -m pip install --upgrade pip | |
python -m pip install regex colored | |
- name: make | |
run: (cd morpho5; sudo make -f Makefile.linux install) | |
- name: test | |
run: (cd test; python3 test.py -c) |