3
0
Fork 0
mirror of https://gitea.com/actions/setup-python.git synced 2024-11-22 10:09: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
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'poetry'
- name: Install poetry
run: python -m pip install poetry
- run: poetry install
- run: poetry run pytest
```