Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 364e819 commit af97157Copy full SHA for af97157
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