skip int and float conversion on bad tag values #131
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 documentation | |
on: | |
pull_request_target: | |
branches: [ master ] | |
paths: | |
- pyproject.toml | |
- musify/** | |
- docs/** | |
workflow_dispatch: | |
workflow_call: | |
permissions: | |
contents: read | |
env: | |
python-version: '3.12' | |
jobs: | |
build: | |
name: 📃 Build pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛒 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ⚙️ Setup - Python 🐍 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: ⚙️ Setup - Pages | |
uses: actions/configure-pages@v5 | |
- name: ⚙️ Setup - Install dependencies | |
run: | | |
sudo apt install graphviz | |
pip install -e '.[docs]' | |
- name: 🏗️ Sphinx build | |
run: | | |
make html | |
make linkcheck | |
- name: 📦 Upload build artifacts | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./docs/_build/html |