1
0
Fork 0
mirror of https://github.com/cisagov/log4j-affected-db.git synced 2024-09-20 03:22:37 +00:00
log4j-affected-db/.github/workflows/build.yml

49 lines
1.5 KiB
YAML
Raw Normal View History

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
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
- uses: actions/setup-python@v1
2019-10-18 14:39:22 +00:00
with:
python-version: 3.8
- name: Store installed Python version
run: |
echo "::set-env name=PY_VERSION::"\
"$(python -c "import platform;print(platform.python_version())")"
- name: Cache pip test requirements
uses: actions/cache@v1
with:
path: ${{ env.PIP_CACHE_DIR }}
key: "${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-\
${{ hashFiles('**/requirements-test.txt') }}"
restore-keys: |
${{ runner.os }}-pip-test-py${{ env.PY_VERSION }}-
${{ runner.os }}-pip-test-
${{ runner.os }}-pip-
- name: Cache pre-commit hooks
uses: actions/cache@v1
with:
path: ${{ env.PRE_COMMIT_CACHE_DIR }}
key: "${{ runner.os }}-pre-commit-py${{ env.PY_VERSION }}-\
${{ hashFiles('**/.pre-commit-config.yaml') }}"
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