Skip to content

feature about chat completions reasoning, support gemini-3-pro works ok and support claude model enable thinking #146

feature about chat completions reasoning, support gemini-3-pro works ok and support claude model enable thinking

feature about chat completions reasoning, support gemini-3-pro works ok and support claude model enable thinking #146

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run linter
run: bun run lint:all
- name: Run type check
run: bun run typecheck
- name: Run tests
run: bun test
- name: Build
run: bun run build