Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

v0.9.0

v0.9.0 #446

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
ruff:
name: Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run Ruff
uses: astral-sh/ruff-action@9828f49eb4cadf267b40eaa330295c412c68c1f9 # v3.2.2
pyright:
name: Pyright
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies for Pyright
run: |
python -m pip install --upgrade pip
pip install pyright
pip install -e .
- name: Run Pyright
run: |
pyright src/