docs: Remove badger docs that got missed. #1420
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
# GitHub Action for building the docs | |
name: "Build Docs" | |
on: | |
push: | |
branches: | |
- "master" | |
- "open-release/*.master" | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: "Build Docs" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v4" | |
- name: "Set up Python" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.12" | |
- name: "Install Graphviz" | |
uses: "kamiazya/setup-graphviz@v1" | |
- name: "Install dependencies" | |
run: | | |
python -m pip install -r requirements/base.txt | |
- name: "Build docs" | |
run: | | |
./run_tests.sh |