We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cache-directories
The documentation for cache-directories says:
# Additional non workspace directories to be cached, separated by newlines. cache-directories: ""
From reading this, two things aren't clear to me:
What exactly is meant by "newlines".
Can I do something like this:
cache-directories: | entry1 entry2
Or do I need to do something like this:
cache-directories: "entry1\nentry2"
An example in the docs would be great, otherwise an example in https://github.com/Swatinem/rust-cache/tree/master/.github/workflows could be an alternative.
Does "non workspace" mean directories outside of the target folder? If I do specify such "non workspace" directories does rust-cache just ignore them?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The documentation for
cache-directories
says:From reading this, two things aren't clear to me:
1
What exactly is meant by "newlines".
Can I do something like this:
Or do I need to do something like this:
An example in the docs would be great, otherwise an example in https://github.com/Swatinem/rust-cache/tree/master/.github/workflows could be an alternative.
2
Does "non workspace" mean directories outside of the target folder?
If I do specify such "non workspace" directories does rust-cache just ignore them?
The text was updated successfully, but these errors were encountered: