From f06da272c66791cd1e9314375cda6d3cf74c60ad Mon Sep 17 00:00:00 2001 From: Jiucheng Zang Date: Thu, 31 Oct 2024 13:39:36 -0400 Subject: [PATCH] Update Git Workflow to support graphviz --- .github/workflows/sphinx-compile-test.yml | 4 ++++ .github/workflows/sphinx-github-pages-deploy.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/sphinx-compile-test.yml b/.github/workflows/sphinx-compile-test.yml index ab116d7..e557b94 100644 --- a/.github/workflows/sphinx-compile-test.yml +++ b/.github/workflows/sphinx-compile-test.yml @@ -21,6 +21,10 @@ jobs: - name: Install Sphinx run: | sudo apt install python3-sphinx-rtd-theme + - name: Install Graphviz + run: | + sudo apt-get update + sudo apt-get install -y graphviz - name: Setup Pages id: pages uses: actions/configure-pages@v5 diff --git a/.github/workflows/sphinx-github-pages-deploy.yml b/.github/workflows/sphinx-github-pages-deploy.yml index 797edf5..1a32fcf 100644 --- a/.github/workflows/sphinx-github-pages-deploy.yml +++ b/.github/workflows/sphinx-github-pages-deploy.yml @@ -34,6 +34,10 @@ jobs: - name: Install Sphinx run: | sudo apt install python3-sphinx-rtd-theme + - name: Install Graphviz + run: | + sudo apt-get update + sudo apt-get install -y graphviz - name: Setup Pages id: pages uses: actions/configure-pages@v5