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

added action/cache

This commit is contained in:
gowridurgad 2024-05-20 17:12:04 +05:30
parent 5c56ece473
commit de8a801a25

View file

@ -313,9 +313,15 @@ steps:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.9' python-version: '3.9'
cache: 'poetry'
- name: Install poetry - name: Install poetry
run: python -m pip install poetry run: python -m pip install poetry
- name: Cache Poetry dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- run: poetry install - run: poetry install
- run: poetry run pytest - run: poetry run pytest
``` ```