Skip to content

Rewrite perf parser to be more robust #51

Rewrite perf parser to be more robust

Rewrite perf parser to be more robust #51

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: |
uv build
- name: Typecheck with mypy
run: |
uv run mypy .
- name: Lint and format with ruff
run: |
uvx ruff check
uvx ruff format --check