Skip to content

Feature/logo addition #15

Feature/logo addition

Feature/logo addition #15

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --locked
- name: Run checks
run: uv run pre-commit run --all-files --show-diff-on-failure