Skip to content

hmm directory?

hmm directory? #20

Workflow file for this run

name: Pre-Commit
on:
push:
jobs:
pre-commit:
name: Run Pre-Commit Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Pre-Commit
run: |
pip install pre-commit
- name: Run Pre-Commit
run: |
pre-commit run --all-files