aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornatsuoto <[email protected]>2026-07-10 16:51:09 +0530
committernatsuoto <[email protected]>2026-07-10 16:51:09 +0530
commit433a7af9e012f88f59da1ace228dd79245cfa4bd (patch)
tree7d6216ccd04e778f1b4ed1272c16fbe30e89fb6d
parent4b923b22547dccccca1670862f5cb90c2d8b5ea7 (diff)
downloadedify-433a7af9e012f88f59da1ace228dd79245cfa4bd.tar.xz
edify-433a7af9e012f88f59da1ace228dd79245cfa4bd.zip
ci: install graphviz system package for SVG-rendering tests
-rw-r--r--.github/workflows/coverage.yml2
-rw-r--r--.github/workflows/github-actions.yml2
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 80cf274..3076588 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -11,6 +11,8 @@ jobs:
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
with:
python-version: '3.11'
+ - name: install graphviz system package
+ run: sudo apt-get update && sudo apt-get install -y graphviz
- name: install dependencies
run: uv sync --frozen
- name: run tests with coverage
diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml
index 58f0b80..2f4c9e5 100644
--- a/.github/workflows/github-actions.yml
+++ b/.github/workflows/github-actions.yml
@@ -44,6 +44,8 @@ jobs:
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
with:
python-version: ${{ matrix.python }}
+ - name: install graphviz system package
+ run: sudo apt-get update && sudo apt-get install -y graphviz
- name: install dependencies
run: uv sync --frozen --all-groups
- name: ${{ matrix.name }}