Skip to content

docs(skill): audit live rndt-explorer — fix sort rotti, nuovo workflo… #3

docs(skill): audit live rndt-explorer — fix sort rotti, nuovo workflo…

docs(skill): audit live rndt-explorer — fix sort rotti, nuovo workflo… #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --locked
- name: Lint (ruff)
run: uv run ruff check .
- name: Type-check (mypy)
run: uv run mypy src/openrndt
- name: Test (pytest)
run: uv run pytest -v