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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |