Skip to content

Add TypeScript Renderer #124

Add TypeScript Renderer

Add TypeScript Renderer #124

Workflow file for this run

name: Test and Validate
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: python
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
working-directory: ./python
run: uv sync --all-extras --dev
- name: Run tests
working-directory: ./python
run: |
PYTHONPATH=.. uv run pytest