Skip to content

fix pyright compatibility issues #490

fix pyright compatibility issues

fix pyright compatibility issues #490

Workflow file for this run

# SPDX-License-Identifier: MIT
name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: pytest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Setup Python
run: uv python install 3.9
- name: Install project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest .