10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 364e819 + af97157 commit f0bcf8bCopy full SHA for f0bcf8b
README.md
@@ -320,6 +320,21 @@ steps:
320
- run: pipenv install
321
```
322
323
+**Using a list of wildcard patterns to cache dependencies**
324
+```yaml
325
+steps:
326
+- uses: actions/checkout@v3
327
+- uses: actions/setup-python@v4
328
+ with:
329
+ python-version: '3.10'
330
+ cache: 'pip'
331
+ cache-dependency-path: |
332
+ **/setup.cfg
333
+ **/requirements*.txt
334
+- run: pip install -e . -r subdirectory/requirements-dev.txt
335
+```
336
+
337
338
# Environment variables
339
340
The `update-environment` flag defaults to `true`.
0 commit comments