Skip to content

Replace myst_parser with myst_nb #19

Replace myst_parser with myst_nb

Replace myst_parser with myst_nb #19

Workflow file for this run

name: Test the library
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Setup git creds
run: |
git config --global user.email "gituser@biocpy"
git config --global user.name "Biocpy test user"
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox