Skip to content

Add pre commit gh action #3

Add pre commit gh action

Add pre commit gh action #3

Workflow file for this run

name: Run Pre-commit
on:
workflow_dispatch:
push:
pull_request:
jobs:
run-pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run pre-commit
run: |
pip install pre-commit
pre-commit run --all-files