Skip to content

docs: add readme

docs: add readme #2

Workflow file for this run

name: lint
on:
push:
branches:
- main # Change this to your main branch name if it's different
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11 # Specify the Python version you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit install
run: pre-commit install
- name: Run pre-commit on all files
run: pre-commit run --all-files