Skip to content

Update license year #76

Update license year

Update license year #76

Workflow file for this run

name: Linter
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Set up uv
uses: astral-sh/setup-uv@v5
- name: Install pre-commit hooks
run: |
uvx pre-commit install --install-hooks
- name: Code style check via pre-commit
run: uvx pre-commit run --all-files