Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Dima Gerasimov
f641dbb305 ci: attempt to use pip cache to speedup
https://github.blog/changelog/2021-11-23-github-actions-setup-python-now-supports-dependency-caching/

UPD: hmm it doesn't seem to work, complains that requirements.txt is missing

this might be relevant...
https://github.com/actions/setup-python/issues/361
2022-04-15 14:23:20 +01:00

View file

@ -30,6 +30,7 @@ jobs:
- uses: actions/setup-python@v2 - uses: actions/setup-python@v2
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
cache: 'pip'
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
@ -61,6 +62,7 @@ jobs:
- uses: actions/setup-python@v2 - uses: actions/setup-python@v2
with: with:
python-version: '3.7' python-version: '3.7'
cache: 'pip'
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with: