Skip to content

added dnamfitage

added dnamfitage #44

Workflow file for this run

name: test
on:
push:
tags:
- 'v*'
paths:
- 'pyproject.toml'
- 'tutorials/**'
- 'pyaging/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9] # Specify the Python versions here
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run Notebooks
run: |
poetry run pytest --nbmake tutorials/