Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Write a test for passing a component as an attribute. #35

Write a test for passing a component as an attribute.

Write a test for passing a component as an attribute. #35

Workflow file for this run

name: CI Tests
on: [push, pull_request]
jobs:
ci_tests:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.14.0-rc.2
uses: actions/setup-python@v5
with:
python-version: 3.14.0-rc.2
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Lint
run: uv run ruff check
- name: Check formatting
run: uv run ruff format --check
- name: Type check
run: uv run pyright
- name: Run tests
run: uv run pytest -v