We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d0bfbd commit 1708564Copy full SHA for 1708564
1 file changed
.github/workflows/test.yml
@@ -46,6 +46,17 @@ jobs:
46
with:
47
version: master
48
49
+ - name: Cache Zig dependencies
50
+ uses: actions/cache@v4
51
+ with:
52
+ path: |
53
+ ~/.cache/zig
54
+ ~/AppData/Local/zig
55
+ ~/Library/Caches/zig
56
+ key: ${{ runner.os }}-zig-deps-${{ hashFiles('.zigversion') }}
57
+ restore-keys: |
58
+ ${{ runner.os }}-zig-deps-
59
+
60
- name: Set up CMake
61
uses: jwlawson/actions-setup-cmake@v2
62
0 commit comments