Skip to content

Added new extract answer feature #206

Added new extract answer feature

Added new extract answer feature #206

Workflow file for this run

name: CodeFlash
on:
pull_request:
paths:
- "src/**"
- "packages/**"
workflow_dispatch:
concurrency: # Cancel prior if new push, SEE: https://stackoverflow.com/a/72408109
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
optimize: # SEE: https://docs.codeflash.ai/getting-started/codeflash-github-actions
runs-on: ubuntu-latest
if: ${{ github.actor != 'codeflash-ai[bot]' }}
env:
CODEFLASH_API_KEY: ${{ secrets.CODEFLASH_API_KEY }}
CODEFLASH_PR_NUMBER: ${{ github.event.number }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- run: uv sync --group=codeflash
- name: Run CodeFlash on fhaviary
run: uv run codeflash
- name: Run CodeFlash on aviary.gsm8k
run: uv run codeflash --module-root=packages/gsm8k/src/aviary --tests-root=packages/gsm8k/tests
- name: Run CodeFlash on aviary.hotpotqa
run: uv run codeflash --module-root=packages/hotpotqa/src/aviary --tests-root=packages/hotpotqa/tests