mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
Update README.md
Add a section to advise using only pip instead of poetry.
This commit is contained in:
parent
2f06e9da25
commit
e147df2e90
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
@ -330,6 +330,19 @@ steps:
|
||||||
- run: poetry run pytest
|
- run: poetry run pytest
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**If you only need poetry install, consider using pip:**
|
||||||
|
```yaml
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.9'
|
||||||
|
cache: 'pip'
|
||||||
|
cache-dependency-path: 'poetry.lock'
|
||||||
|
- run: pip install .
|
||||||
|
- run: pytest
|
||||||
|
```
|
||||||
|
|
||||||
**Using wildcard patterns to cache dependencies**
|
**Using wildcard patterns to cache dependencies**
|
||||||
```yaml
|
```yaml
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue