Skip to content

[PB] cleanup small TODOs #93

[PB] cleanup small TODOs

[PB] cleanup small TODOs #93

Workflow file for this run

name: Run Pre-commit Checks
on:
pull_request:
branches: [ main ]
jobs:
pre_commit:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --verbose --all-files