Skip to content

Commit e402e93

Browse files
committed
ci: update cache Graphviz
1 parent 71982dc commit e402e93

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ jobs:
6161
cp -r /usr/share/graphviz ~/graphviz-cache/share/ 2>/dev/null
6262
fi
6363
echo "Testing dot command:"
64-
which dot && dot -V || echo "dot failed"
64+
if which dot; then
65+
dot -V || true
66+
else
67+
echo "dot command not found"
68+
fi
6569
6670
- name: Run tests
6771
run: make test

0 commit comments

Comments
 (0)