This commit is contained in:
lordwelch 2022-01-17 14:01:05 -08:00
parent 04f6dd9d87
commit ce5dbfb5bf

View File

@ -22,6 +22,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- uses: syphar/restore-virtualenv@v1
id: cache-virtualenv
with:
requirement_files: requirements.txt # this is optional
- uses: syphar/restore-pip-download-cache@v1
if: steps.cache-virtualenv.outputs.cache-hit != 'true'
- name: Install dependencies
run: |
python3 -m pip install -r requirements_dev.txt