Skip to content

Add launch file

Add launch file #31

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14-dev"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies 📦
run: |
python -m pip install --no-cache-dir --upgrade pip setuptools wheel
python -m pip install --no-cache-dir uv
uv sync --all-extras
- name: Lint code 🧹
run: |
uv run ruff check pyjsx/ tests/
- name: Type check 🏷
run: |
uv run pyright
- name: Run tests 🧪
run: |
uv run pytest --no-cov