Merge ce207c8817be230ca9aa568013514b0cdcf0279b into 1bd1e32a3bdc45362d1e726936510720a7c30a57

This commit is contained in:
Melvyn Sopacua 2024-12-12 02:05:24 -05:00 committed by GitHub
commit d7e6fbb66c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -563,6 +563,15 @@ jobs:
key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}
```
To use the cache effectively:
```yaml
- name: Install packages
run: |
pipenv --venv && \
(pipenv lock -r |cat - ci-requirements.txt|pipenv run pip install -r /dev/stdin) || \
(pipenv install --python ${{ matrix.python-version }} --deploy)
```
## R - renv
For renv, the cache directory will vary by OS. The `RENV_PATHS_ROOT` environment variable is used to set the cache location. Have a look at https://rstudio.github.io/renv/reference/paths.html#details for more details.