Skip to content

[CI] Disable check for new pyright version #31

[CI] Disable check for new pyright version

[CI] Disable check for new pyright version #31

Workflow file for this run

name: Build python package
on: [push]
permissions: {}
env:
# Disable check for new pyright version
PYRIGHT_PYTHON_IGNORE_WARNINGS: 1
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install just
run: uv tool install rust-just
- name: Install the project
run: uv sync --dev
- name: Run checks
run: just check
- name: Run tests
run: just test doctest
- name: Build package
run: uv build