Skip to content

Commit

Permalink
Add example for python pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillermo Eijo committed Oct 23, 2020
1 parent 8819edf commit 4557c6a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- [Multiple OSes in a workflow](#multiple-oss-in-a-workflow)
- [Using pip to get cache location](#using-pip-to-get-cache-location)
- [Using a script to get cache location](#using-a-script-to-get-cache-location)
- [Python - pipenv](#python---pipenv)
- [R - renv](#r---renv)
- [Simple example](#simple-example-1)
- [Multiple OSes in a workflow](#multiple-oss-in-a-workflow-1)
Expand Down Expand Up @@ -379,6 +380,17 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu.
${{ runner.os }}-pip-
```

## Python - pipenv

```yaml
- uses: actions/cache@v2
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }}
restore-keys: |
${{ runner.os }}-pipenv-
```

## R - renv

For renv, the cache directory will vary by OS. Look at https://rstudio.github.io/renv/articles/renv.html#cache
Expand Down

0 comments on commit 4557c6a

Please sign in to comment.