Skip to content

Update backlog progress after PR 46 #2

Update backlog progress after PR 46

Update backlog progress after PR 46 #2

Workflow file for this run

name: pre-commit
on: [push, pull_request]
jobs:
pre-commit:
name: Pre-commit checks
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Run pre-commit
run: |
pip install pre-commit
pre-commit run --config .pre-commit-config.yaml --all-files