Support compatibility with the privacy plugin of Material for MkDocs … #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
run: | |
name: Run unit tests with codecov upload | |
runs-on: ${{ matrix.os }} | |
env: | |
USING_COVERAGE: '3.7' | |
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: Install dependencies | |
run: | | |
pip3 install --upgrade pip | |
pip3 install --upgrade setuptools | |
pip3 install --upgrade wheel | |
pip3 install pyflakes | |
pip3 install -r tests/test_requirements.txt | |
pip3 install -e . | |
- name: Static code checking with pyflakes | |
run: | | |
pyflakes mkdocs_glightbox | |
- name: Run unit tests | |
run: | | |
git config --global user.name "Github Action" | |
git config --global user.email "[email protected]" | |
pytest --cov=mkdocs_glightbox |