2019-10-18 14:39:22 +00:00
|
|
|
---
|
|
|
|
name: build
|
|
|
|
|
2020-01-24 22:10:49 +00:00
|
|
|
on: [
|
|
|
|
push,
|
|
|
|
pull_request
|
|
|
|
]
|
2019-10-18 14:39:22 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-02-11 15:41:17 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v1
|
2019-10-18 14:39:22 +00:00
|
|
|
with:
|
2020-02-11 15:41:17 +00:00
|
|
|
python-version: 3.8
|
2019-11-05 19:27:20 +00:00
|
|
|
- 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-
|
2020-02-12 05:14:11 +00:00
|
|
|
- name: Cache pre-commit hooks
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pre-commit
|
|
|
|
key: "${{ runner.os }}-pre-commit-\
|
|
|
|
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
2019-10-18 14:39:22 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2020-02-18 23:04:06 +00:00
|
|
|
pip install --upgrade --requirement requirements-test.txt
|
2019-10-18 14:39:22 +00:00
|
|
|
- name: Run pre-commit on all files
|
|
|
|
run: pre-commit run --all-files
|