Skip to content

fix: resolve pyright error for optional params in Server error log #42

fix: resolve pyright error for optional params in Server error log

fix: resolve pyright error for optional params in Server error log #42

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- 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 venv --python ${{ matrix.python-version }} && uv pip install -e ".[dev]"
- name: Run tests
run: uv run pytest --cov=vkworkspace --cov-report=term-missing || test $? -eq 5