add the reformulated version of Fiedler_BMCSystBiol2016 #440
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 | |
# trigger | |
on: [push, workflow_dispatch, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Prepare python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade setuptools wheel | |
cd src/python && pip install -e . | |
- name: Check with petablint | |
run: bmp-petablint | |
- name: Show overview | |
run: bmp-create-overview | |
- name: Check SBML metadata | |
run: bmp-check-sbml-metadata |