Skip to content

Two reviewers for "opinionated" changes. #1728

Two reviewers for "opinionated" changes.

Two reviewers for "opinionated" changes. #1728

Workflow file for this run

name: Linting
on:
push:
branches:
- main
- "renovate/**"
pull_request:
jobs:
lint-this-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Cache pre-commit
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Set up python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: "3.x"
- name: Install dependencies
run: python -m pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --color always --verbose
lint-the-template:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Cache pre-commit
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Set up python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: "3.x"
- name: Install dependencies
run: python -m pip install cookiecutter pre-commit
- name: Create template
run: cookiecutter . --no-input --output-dir cookie-template
- name: Run pre-commit
run: |-
git add .
pre-commit run --all-files --color always --verbose
working-directory: cookie-template/python-template