3
0
Fork 0
mirror of https://gitea.com/actions/setup-python.git synced 2024-11-22 18:19:35 +01:00

updated doc

This commit is contained in:
gowridurgad 2024-05-16 18:14:50 +05:30
parent 871daa956c
commit 5c56ece473

View file

@ -310,12 +310,12 @@ steps:
```yaml ```yaml
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.9' python-version: '3.9'
cache: 'poetry' cache: 'poetry'
- name: Install poetry
run: python -m pip install poetry
- run: poetry install - run: poetry install
- run: poetry run pytest - run: poetry run pytest
``` ```