Merge pull request #3434 from browniebroke/ci/cache-deps

Cache Python dependencies on our CI
This commit is contained in:
Fábio C. Barrionuevo da Luz 2021-11-24 15:31:42 -03:00 committed by GitHub
commit 6a94c26f5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: "3.9"
cache: pip
- name: Install dependencies
run: |
python -m pip install -U pip
@ -48,6 +49,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: "3.9"
cache: pip
- name: Docker ${{ matrix.script.name }}
run: sh tests/test_docker.sh ${{ matrix.script.args }}
@ -85,6 +87,8 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: "3.9"
cache: pip
cache-dependency-path: '**/requirements*.txt'
- uses: actions/setup-node@v2
with:
node-version: "16"