- Bump actions/checkout v4/v5 → v6, setup-node v4 → v6, setup-java v4 → v5, prek-action v1 → v2, github-script v6 → v7, aws-credentials v4 → v6, claude-code-action v1.0.89 → v1 - Add enable-cache: true to all astral-sh/setup-uv steps - Remove redundant uv venv --seed (uv sync creates venvs automatically) - Merge double uv sync steps in unit-tests into single conditional - Fix codeflash.yaml: broken path filter and working-directory - Consolidate duplicate publish jobs into a single matrix job - Remove generate_release_notes overridden by manual body
46 lines
No EOL
1 KiB
YAML
46 lines
No EOL
1 KiB
YAML
name: CodeFlash
|
||
|
||
on:
|
||
pull_request:
|
||
paths:
|
||
- 'codeflash/**'
|
||
- 'tests/**'
|
||
- 'pyproject.toml'
|
||
- 'uv.lock'
|
||
|
||
workflow_dispatch:
|
||
|
||
concurrency:
|
||
group: ${{ github.workflow }}-${{ github.ref_name }}
|
||
cancel-in-progress: true
|
||
|
||
jobs:
|
||
optimize:
|
||
name: Optimize new Python code
|
||
if: ${{ github.actor != 'codeflash-ai[bot]' }}
|
||
runs-on: ubuntu-latest
|
||
env:
|
||
CODEFLASH_AIS_SERVER: prod
|
||
POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }}
|
||
CODEFLASH_API_KEY: ${{ secrets.CODEFLASH_API_KEY }}
|
||
COLUMNS: 110
|
||
steps:
|
||
- name: 🛎️ Checkout
|
||
uses: actions/checkout@v6
|
||
with:
|
||
fetch-depth: 0
|
||
|
||
- name: 🐍 Set up Python 3.11 for CLI
|
||
uses: astral-sh/setup-uv@v8.0.0
|
||
with:
|
||
python-version: 3.11.6
|
||
enable-cache: true
|
||
|
||
- name: 📦 Install dependencies (CLI)
|
||
run: |
|
||
uv sync
|
||
|
||
- name: ⚡️Codeflash Optimization
|
||
id: optimize_code
|
||
run: |
|
||
uv run codeflash --benchmark --testgen-review |