feat: add Rayfin App Gallery community jumpstart #242
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: Gated Check In - Run Tests for Python Matrix for compatibility | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| - name: Install dependencies (all groups) | |
| working-directory: src/fabric_jumpstart | |
| run: | | |
| uv sync --all-groups | |
| - name: Lint (ruff) | |
| working-directory: src/fabric_jumpstart | |
| run: | | |
| uv run ruff check . | |
| - name: Type check (ty) | |
| working-directory: src/fabric_jumpstart | |
| run: | | |
| uv run ty check . | |
| - name: Run tests | |
| working-directory: src/fabric_jumpstart | |
| run: | | |
| uv run pytest |