Skip to content

Refactor to make library installable as module #2

Refactor to make library installable as module

Refactor to make library installable as module #2

Workflow file for this run

name: Pre-Commit Check
on:
pull_request
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install pre-commit
run: uv pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files