Skip to content

Using mkdocs to serve docs from our markdown files #36

Using mkdocs to serve docs from our markdown files

Using mkdocs to serve docs from our markdown files #36

Workflow file for this run

name: Run Tests on PR
on:
pull_request:
branches:
- '*'
jobs:
test:
name: Test
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python -
poetry install
- name: Run tests
run: poetry run pytest --cov=microdata_tools