Skip to content

chore(0.25.0): bump python __version__ fallback to 0.25.0 #7

chore(0.25.0): bump python __version__ fallback to 0.25.0

chore(0.25.0): bump python __version__ fallback to 0.25.0 #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install JS deps
run: pnpm install --frozen-lockfile
- name: Lint (biome)
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test
- name: Build and emit OpenAPI
run: pnpm build
- name: Install Python client
working-directory: clients/python
run: pip install -e ".[dev]"
- name: Test Python client
working-directory: clients/python
run: pytest -v