Skip to content

Update .pre-commit-config.yaml (#6) #4

Update .pre-commit-config.yaml (#6)

Update .pre-commit-config.yaml (#6) #4

Workflow file for this run

name: pre-commit-format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre_commit_checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install -r requirements.txt
- run: pip install pre-commit
- run: pre-commit run --all-files