2019-10-18 14:39:22 +00:00
|
|
|
---
|
|
|
|
name: build
|
|
|
|
|
2020-05-01 03:31:59 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
repository_dispatch:
|
|
|
|
types: [apb]
|
2019-10-18 14:39:22 +00:00
|
|
|
|
2020-03-04 13:41:59 +00:00
|
|
|
env:
|
|
|
|
PIP_CACHE_DIR: ~/.cache/pip
|
|
|
|
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
|
|
|
|
|
2019-10-18 14:39:22 +00:00
|
|
|
jobs:
|
2020-04-06 23:02:31 +00:00
|
|
|
lint:
|
2019-10-18 14:39:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-02-11 15:41:17 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-11-11 03:10:38 +00:00
|
|
|
- id: setup-python
|
|
|
|
uses: actions/setup-python@v2
|
2019-10-18 14:39:22 +00:00
|
|
|
with:
|
2021-12-15 20:02:34 +00:00
|
|
|
python-version: "3.10"
|
2020-11-20 17:22:39 +00:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
env:
|
|
|
|
BASE_CACHE_KEY: "${{ github.job }}-${{ runner.os }}-\
|
2021-12-15 20:02:34 +00:00
|
|
|
py${{ steps.setup-python.outputs.python-version }}"
|
2019-11-05 19:27:20 +00:00
|
|
|
with:
|
2020-07-30 06:19:02 +00:00
|
|
|
path: |
|
|
|
|
${{ env.PIP_CACHE_DIR }}
|
|
|
|
${{ env.PRE_COMMIT_CACHE_DIR }}
|
2020-11-20 17:22:39 +00:00
|
|
|
key: "${{ env.BASE_CACHE_KEY }}\
|
2020-02-12 05:14:11 +00:00
|
|
|
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
2020-07-30 06:19:02 +00:00
|
|
|
restore-keys: |
|
2020-11-20 17:22:39 +00:00
|
|
|
${{ env.BASE_CACHE_KEY }}
|
2019-10-18 14:39:22 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-12-15 20:02:34 +00:00
|
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
|
|
pip install --upgrade pre-commit
|
2020-04-06 23:02:31 +00:00
|
|
|
- name: Set up pre-commit hook environments
|
2020-04-06 17:47:18 +00:00
|
|
|
run: pre-commit install-hooks
|
2019-10-18 14:39:22 +00:00
|
|
|
- name: Run pre-commit on all files
|
|
|
|
run: pre-commit run --all-files
|