Skip to content

feat: add deepseek #748

feat: add deepseek

feat: add deepseek #748

Workflow file for this run

name: Code Review GPT CI
on:
pull_request:
branches: [main]
permissions:
pull-requests: write
contents: read
actions: read
jobs:
build_and_test:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BASE_SHA: ${{ github.event.pull_request.base.sha }}
GITHUB_SHA: ${{ github.sha }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun i
- name: Lint check
run: bun check
- name: Run tests
run: bun test
- name: Run code review script
run: bun review --ci=github --model=gpt-4o-mini --debug
- name: Run prompt tests
run: bun test:llm --ci=github --model=gpt-4o-mini