8000
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 2f06e9d + e147df2 commit 5df6377Copy full SHA for 5df6377
README.md
@@ -330,6 +330,19 @@ steps:
330
- run: poetry run pytest
331
```
332
333
+**If you only need poetry install, consider using pip:**
334
+```yaml
335
+steps:
336
+- uses: actions/checkout@v3
337
+- uses: actions/setup-python@v4
338
+ with:
339
+ python-version: '3.9'
340
+ cache: 'pip'
341
+ cache-dependency-path: 'poetry.lock'
342
+- run: pip install .
343
+- run: pytest
344
+```
345
+
346
**Using wildcard patterns to cache dependencies**
347
```yaml
348
steps:
0 commit comments