Skip to content

Commit e4a39bb

Browse files
committed
Merge branch 'sanitizer' of https://github.com/danielaparker/jsoncons into sanitizer
2 parents e20f908 + 18d1379 commit e4a39bb

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

.github/workflows/macos.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,23 @@ jobs:
104104
- name: test
105105
working-directory: build/
106106
run: ctest --output-on-failure
107-
107+
- name: Cache
108+
uses: actions/[email protected]
109+
with:
110+
# A list of files, directories, and wildcard patterns to cache and restore
111+
path:
112+
# An explicit key for restoring and saving the cache
113+
key:
114+
# An ordered multiline string listing the prefix-matched keys, that are used for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case.
115+
restore-keys: # optional
116+
# The chunk size used to split up large files during upload, in bytes
117+
upload-chunk-size: # optional
118+
# An optional boolean when enabled, allows windows runners to save or restore caches that can be restored or saved respectively on other platforms
119+
enableCrossOsArchive: # optional, default is false
120+
# Fail the workflow if cache entry is not found
121+
fail-on-cache-miss: # optional, default is false
122+
# Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache
123+
lookup-only: # optional, default is false
124+
# Run the post step to save the cache even if another step before fails
125+
save-always: # optional, default is false
126+

0 commit comments

Comments
 (0)