Skip to content

Add parameter app to StarGroup #10

Add parameter app to StarGroup

Add parameter app to StarGroup #10

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
paths:
- "star_openapi/**"
- "tests/**"
pull_request:
branches: [ main ]
paths:
- "star_openapi/**"
- "tests/**"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [ "3.11", "3.12", "3.13", "3.14" ]
env:
PYTHONPATH: .
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: uv sync
- name: Test with pytest
run: uv run pytest tests
- name: ruff check
run: uv run ruff check star_openapi tests examples
- name: ruff format
run: uv run ruff format --check star_openapi tests examples
- name: Run ty
run: uv run ty check star_openapi