Add GitHub action caching of pre-commit hooks and pip packages.

pull/113/head
Felddy 5 years ago
parent 12b91c4850
commit 5d5567d303
No known key found for this signature in database
GPG Key ID: AFD7E112AF75260E
  1. 21
      .github/workflows/build.yml

@ -5,9 +5,7 @@ on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@ -16,6 +14,25 @@ jobs:
with:
python-version: 3.7
- name: Cache pre-commit hooks
uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: "${{ runner.os }}-pre-commit-\
${{ hashFiles('**/.pre-commit-config.yaml') }}"
restore-keys: |
${{ runner.os }}-pre-commit-
- name: Cache pip test requirements
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: "${{ runner.os }}-pip-test-\
${{ hashFiles('**/requirements-test.txt') }}"
restore-keys: |
${{ runner.os }}-pip-test-
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip

Loading…
Cancel
Save