Skip to content

Commit

Permalink
Install graphviz in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
j9ac9k committed May 28, 2024
1 parent c3c9a6f commit 7071b78
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 7071b78

Please sign in to comment.