Skip to content

chore(deps): Bump actions/checkout from 4 to 6 #40

chore(deps): Bump actions/checkout from 4 to 6

chore(deps): Bump actions/checkout from 4 to 6 #40

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_call:
jobs:
lint-python:
name: Ruff (Python)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
test-python:
name: Unit Tests (Python)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- shell: bash
run: python -m pip install -r requirements.txt
- shell: bash
run: python -m unittest discover -s tests -p 'test_*.py'
typecheck-ts:
name: TypeScript (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- shell: bash
run: cd ui && bun install --frozen-lockfile 2>/dev/null || bun install
- shell: bash
run: cd ui && bun run typecheck
test-ts:
name: Unit Tests (TypeScript)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- shell: bash
run: cd ui && bun install --frozen-lockfile 2>/dev/null || bun install
- shell: bash
run: cd ui && bun run test