Skip to content

Commit 4a9ea16

Browse files
committed
feat: dev
1 parent ffa3029 commit 4a9ea16

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci-test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,15 @@ jobs:
3636
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
3737
run: poetry install --no-interaction --no-ansi
3838

39+
- name: Cache Graphviz
40+
id: cache-graphviz
41+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
42+
with:
43+
path: /usr/bin/dot
44+
key: graphviz-${{ runner.os }}
45+
3946
- name: Install Graphviz
47+
if: steps.cache-graphviz.outputs.cache-hit != 'true'
4048
run: sudo apt-get update && sudo apt-get install -y graphviz
4149

4250
- name: Run tests

0 commit comments

Comments
 (0)