Skip to content

feat: Optimize orphaned file cleanup #3

feat: Optimize orphaned file cleanup

feat: Optimize orphaned file cleanup #3

Workflow file for this run

name: Pre Commit
on:
push:
# branches:
# - main
# pull_request:
# branches:
# - main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: 3.8.18
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files