Skip to content

build(deps): bump pre-commit from 3.2.2 to 3.3.1 #224

build(deps): bump pre-commit from 3.2.2 to 3.3.1

build(deps): bump pre-commit from 3.2.2 to 3.3.1 #224

Workflow file for this run

name: Pre-commit check
on:
push:
branches-ignore:
- "dependabot/**"
- weblate
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('**/requirements*.txt') }}-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements-lint.txt
- name: pre-commit
run: pre-commit run --all