Skip to content

Commit

Permalink
explicited installing of graphviz
Browse files Browse the repository at this point in the history
  • Loading branch information
vicpaton committed Jul 2, 2024
1 parent bdc5d8a commit 43775de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ jobs:
steps:
- name: Check out
uses: actions/checkout@main
- uses: tlylt/install-graphviz@v1
- name: Install Graphviz on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y graphviz graphviz-dev
- name: Install Graphviz on macOS
if: matrix.os == 'macos-latest'
run: brew install graphviz
- name: Setup Python
uses: actions/setup-python@v5
- name: Install Poetry
Expand Down

0 comments on commit 43775de

Please sign in to comment.