Skip to content

Update pre-commit hooks #489

Update pre-commit hooks

Update pre-commit hooks #489

Workflow file for this run

name: CI
on: [push]
jobs:
pre-commit-basic:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools wheel
pip install pre-commit
- name: Run pre-commit
run: SKIP=pylint,mypy,black,bandit,requirements-txt-fixer pre-commit run --all-files