Merge remote-tracking branch 'origin/main' into data_stores_script_ta… #6563
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 Docs | |
on: | |
- push | |
- pull_request | |
defaults: | |
run: | |
working-directory: docs | |
jobs: | |
build: | |
name: build-docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.12 | |
- name: Pip Install | |
run: | | |
pip install -r requirements.txt | |
- name: Build | |
run: | | |
./bin/build --ci |