1
0
Fork 0
mirror of https://github.com/cisagov/log4j-affected-db.git synced 2024-09-19 19:12:38 +00:00
log4j-affected-db/.github/workflows/build.yml

47 lines
1.3 KiB
YAML
Raw Normal View History

2019-10-18 14:39:22 +00:00
---
name: build
on:
push:
pull_request:
repository_dispatch:
types: [apb]
2019-10-18 14:39:22 +00:00
env:
PIP_CACHE_DIR: ~/.cache/pip
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
2019-10-18 14:39:22 +00:00
jobs:
lint:
2019-10-18 14:39:22 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: setup-python
uses: actions/setup-python@v2
2019-10-18 14:39:22 +00:00
with:
python-version: 3.9
- name: Cache linting environments
uses: actions/cache@v2
with:
path: |
${{ env.PIP_CACHE_DIR }}
${{ env.PRE_COMMIT_CACHE_DIR }}
key: |
lint-${{ runner.os }}-\
py${{ steps.setup-python.outputs.python-version }}-\
${{ hashFiles('**/requirements-test.txt') }}-\
2020-09-03 20:31:23 +00:00
${{ hashFiles('**/requirements.txt') }}-\
${{ hashFiles('**/.pre-commit-config.yaml') }}"
restore-keys: |
lint-${{ runner.os }}-\
py${{ steps.setup-python.outputs.python-version }}-
lint-${{ runner.os }}-
2019-10-18 14:39:22 +00:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade --requirement requirements-test.txt
- name: Set up pre-commit hook environments
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