Skip to content

chore(deps-dev): bump ruff from 0.11.13 to 0.16.1 #147

chore(deps-dev): bump ruff from 0.11.13 to 0.16.1

chore(deps-dev): bump ruff from 0.11.13 to 0.16.1 #147

Workflow file for this run

name: Lint and test
on: [push]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
python: ["3.13", "3.14"]
os: ["ubuntu-latest", "windows-latest"]
steps:
- uses: actions/checkout@v7
- name: Install the latest version of uv with Python ${{matrix.python}}
uses: astral-sh/setup-uv@v7
with:
python-version: ${{matrix.python}}
- name: Linting code by ruff
run: |
uv run ruff check .
- name: Check types by pyright
run: |
uv run pyright .
# NOTE: Currently there are no unittests, so disable, because no tests exits with 5 exit code
# - name: Run unit-tests
# run: uv run python -m unittest