Skip to content

Packages the repository with uv #42

Packages the repository with uv

Packages the repository with uv #42

Workflow file for this run

name: Lint & Format Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Run Lint Checks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files