From 7071b78a19e838fd6c7e19868a0a9647e78165ea Mon Sep 17 00:00:00 2001 From: Ognyan Moore Date: Tue, 28 May 2024 08:24:41 -0400 Subject: [PATCH] Install graphviz in CI --- .github/workflows/CI.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 576b9273b..e28a333e9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -145,6 +145,19 @@ jobs: with: python-version: ${{ matrix.python-version }} pandoc: true + - name: "Install Graphviz on Windows 🗔" + if: runner.os == 'Windows' + run: choco install graphviz + - name: "Install Graphviz on macOS " + if: runner.os == 'macOS' + run: | + brew update + brew install graphviz + - name: "Install Graphviz on Linux 🐧" + if: runner.os == 'Linux' + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends graphviz - name: "Build docs and check for warnings 📖" shell: bash run: |