Remove old files #163
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: Examples | |
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 | |
sudo apt install povray | |
sudo apt install libfreetype-dev libfreetype6 libfreetype6-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: configureMorphoView | |
run: | | |
sudo apt install povray | |
sudo apt install libglfw3 libglfw3-dev | |
- name: makeMorphoview | |
run: (cd morphoview; sudo make -f Makefile.linux install) | |
- name: testExamples | |
run: (cd examples; python3 examples.py -c) |