Skip to content

Update package reference for sbmlpbkutils and add option to include C… #12

Update package reference for sbmlpbkutils and add option to include C…

Update package reference for sbmlpbkutils and add option to include C… #12

Workflow file for this run

name: Unit test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover -s 'tests/' -p 'test_*.py'