Skip to content

Merge branches 'main' and 'main' of https://github.com/peterprescott/… #24

Merge branches 'main' and 'main' of https://github.com/peterprescott/…

Merge branches 'main' and 'main' of https://github.com/peterprescott/… #24

name: Pre-commit Check
on:
push:
branches:
- main
- dev
jobs:
pre_commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files