Skip to content

docs: change url to MDTO's XML docs #9

docs: change url to MDTO's XML docs

docs: change url to MDTO's XML docs #9

Workflow file for this run

name: Tests
# run tests whenever main gets a commit or PR
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest # this is the only distro available 🙃
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install mdto.py and dependencies
run: |
python -m pip install --upgrade pip
pip install pytest # pytest ≠ project dep, so add it here
pip install -e .
- name: Run tests
run: pytest