Skip to content

Migrate to using Traitlets #241

Migrate to using Traitlets

Migrate to using Traitlets #241

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: latest
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --dev
- name: Run linter
run: uv run ruff check .
- name: Run formatter check
run: uv run ruff format --check .
- name: Run tests
run: uv run pytest -v