This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
chore(deps): bump sphinx-immaterial from 0.11.11 to 0.11.12 #516
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: ${{ matrix.os }}-python${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
os: | |
- macos-12 | |
- ubuntu-latest | |
steps: | |
- name: Checkout build | |
id: checkout-build | |
uses: actions/checkout@v3 | |
- name: Install Poetry | |
id: install-poetry | |
run: pipx install poetry | |
- name: Setup Python | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: poetry | |
- name: Install Python Packages | |
id: install-python-packages | |
run: poetry install | |
- name: Docs | |
id: docs | |
run: poetry run sphinx-build -M html docs docs/_build -W | |
- name: Audit | |
id: audit | |
run: poetry run pyaud audit | |
- name: Upload coverage | |
id: upload-coverage | |
uses: codecov/codecov-action@v4 |