Skip to content

enumerate nav links #18

enumerate nav links

enumerate nav links #18

Workflow file for this run

name: Unit tests
on: [pull_request]
jobs:
run:
name: Run unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Static code checking with pyflakes
run: |
pip install pyflakes
pyflakes mkdocs_enumerate_headings_plugin
- name: Run unit tests
run: |
pip install -r tests/test_requirements.txt
pip install -e .
pytest --cov=mkdocs_enumerate_headings_plugin --cov-report=xml