mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 03:38:36 +08:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			9b9dae1f7c
			...
			40c3717e37
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 40c3717e37 | ||
|   | ce207c8817 | 
|  | @ -563,6 +563,15 @@ jobs: | ||||||
|     key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }} |     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 | ## 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. | 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. | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user