Skip to content

chore: Update dependencies and installation commands for mkdocs #24

chore: Update dependencies and installation commands for mkdocs

chore: Update dependencies and installation commands for mkdocs #24

name: MkDoxy build all supported Python versions
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e ".[dev]"
- name: Build docs
run: mkdocs build --clean --strict --verbose