Skip to content

Fix charts with schema-url breaking when using links with index, clos… #52

Fix charts with schema-url breaking when using links with index, clos…

Fix charts with schema-url breaking when using links with index, clos… #52

Workflow file for this run

name: pytest
on: [push, pull_request, workflow_dispatch]
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 ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Static code checking with pyflakes
run: |
pip install pyflakes
pyflakes mkdocs_charts_plugin
- name: Generate coverage report
run: |
pip install -r tests/test_requirements.txt
pip install .
pytest --cov=mkdocs_charts_plugin