chore: Version bump #216
This file contains hidden or 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: Documentation | |
| on: | |
| push: | |
| branches: [ master ] | |
| tags: '*' | |
| jobs: | |
| build-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@v2.14.0 | |
| with: | |
| egress-policy: audit | |
| allowed-endpoints: > | |
| files.pythonhosted.org:443 | |
| github.com:443 | |
| release-assets.githubusercontent.com:443 | |
| api.github.com:443 | |
| pypi.org:443 | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python '3.13' | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install airflow-dbt-python with uv | |
| run: uv sync --all-extras --group docs | |
| - name: Install Graphviz | |
| run: sudo apt-get install graphviz | |
| - name: Build documentation | |
| run: | | |
| cd docs/ | |
| uv run python -m sphinx -T -b dirhtml -d _build/doctrees . html |