Skip to content

chore: Add templates for bug reports and features #182

chore: Add templates for bug reports and features

chore: Add templates for bug reports and features #182

Workflow file for this run

name: Documentation
on:
push:
branches: [ master ]
tags: '*'
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Set up Python '3.12'
uses: actions/setup-python@v5.4.0
with:
python-version: '3.12'
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
version: 0.7.2
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