Add parameter app to StarGroup
#10
Workflow file for this run
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: 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 |