We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa3029 commit 4a9ea16Copy full SHA for 4a9ea16
.github/workflows/ci-test.yml
@@ -36,7 +36,15 @@ jobs:
36
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
37
run: poetry install --no-interaction --no-ansi
38
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
+
46
- name: Install Graphviz
47
+ if: steps.cache-graphviz.outputs.cache-hit != 'true'
48
run: sudo apt-get update && sudo apt-get install -y graphviz
49
50
- name: Run tests
0 commit comments