Skip to content

Add more performance optimizations + benchmarks #146

Add more performance optimizations + benchmarks

Add more performance optimizations + benchmarks #146

Workflow file for this run

# This workflow will install project dependencies and run linter
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: lint
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
ci:
strategy:
matrix:
python-version: ["3.14"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run ruff
run: |
uv run ruff check .
uv run ruff format --check .
- name: Run mypy
run: uv run mypy .