mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-17 22:37:54 +00:00
02c5a6f8bf
There is no need to run python code to determine the python version. Resolves #58. See here for details: https://github.com/actions/setup-python/blob/main/action.yml#L14-L16
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
---
|
|
name: build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
repository_dispatch:
|
|
types: [apb]
|
|
|
|
env:
|
|
PIP_CACHE_DIR: ~/.cache/pip
|
|
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- id: setup-python
|
|
uses: actions/setup-python@v2
|
|
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') }}-\
|
|
${{ hashFiles('**/requirements.txt') }}-\
|
|
${{ hashFiles('**/.pre-commit-config.yaml') }}"
|
|
restore-keys: |
|
|
lint-${{ runner.os }}-\
|
|
py${{ steps.setup-python.outputs.python-version }}-
|
|
lint-${{ runner.os }}-
|
|
- 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
|
|
- name: Run pre-commit on all files
|
|
run: pre-commit run --all-files
|