This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
Fix table syncing to use inner joins. #349
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
# This workflow will install Python dependencies, build the package and then build the documentation. | |
name: Build documentation | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
python -m pip install --upgrade pip | |
pip install . | |
pip install .[dev] | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Install notebook requirements | |
run: | | |
sudo apt-get install pandoc | |
- name: Build docs | |
run: | | |
sphinx-build -T -E -b html -d docs/build/doctrees ./docs docs/build/html |