Skip to content

Add pre commit hooks #1

Add pre commit hooks

Add pre commit hooks #1

Workflow file for this run

name: Hooks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pre-commit-hooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: pre-commit hooks
run:
pre-commit run --all-files