Skip to content

Commit

Permalink
Install graphviz
Browse files Browse the repository at this point in the history
  • Loading branch information
firasm authored Sep 7, 2024
1 parent 553e046 commit 296e7c9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ jobs:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }}

- id: install-graphviz-linux
name: Install Graphviz on Linux
# if: runner.os == 'Linux'
# shell: bash
run: |
# Install Graphviz on Linux
sudo apt update
sudo apt install -qy gsfonts
sudo apt -qq list fonts-liberation gsfonts
sudo apt install -qy graphviz
sudo apt -y autoremove --purge
sudo apt -y autoclean
sudo apt clean
- name: Install dependencies
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 296e7c9

Please sign in to comment.