Skip to content

build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 #338

build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0

build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 #338

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@v4
- uses: actions/cache@v4
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@v5
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