Update README.md #679
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: Tests Ubuntu | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get install flex bison | |
- name: Build Virus Macrophage project | |
run: | | |
make virus-macrophage-sample | |
make | |
- name: Run Virus Macrophage cell lines project | |
run: | | |
./virus-sample | |
- name: Build PhysiBoSS cell lines project | |
run: | | |
make reset | |
make physiboss-cell-lines-sample | |
make clean | |
make | |
- name: Run PhysiBoSS cell lines project | |
run: | | |
./PhysiBoSS_Cell_Lines | |
- name: Build PhysiMeSS project | |
run: | | |
make reset | |
make physimess-sample | |
make clean | |
make | |
- name: Run PhysiMeSS project | |
run: | | |
./project | |
./project config/Fibre_Initialisation/mymodel_initialisation.xml | |
./project config/Cell_Fibre_Mechanics/mymodel_rotating.xml | |