Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 4 to 5. - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v4...v5) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
34 lines
871 B
YAML
34 lines
871 B
YAML
name: Codeflash
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "src/backend/base/langflow/**"
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
optimize:
|
|
name: Optimize new Python code in this PR
|
|
if: ${{ github.actor != 'codeflash-ai[bot]' }}
|
|
runs-on: ubuntu-latest
|
|
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@v5
|
|
with:
|
|
enable-cache: true
|
|
python-version: "3.12"
|
|
- run: uv sync --extra dev
|
|
- name: Run Codeflash Optimizer
|
|
working-directory: ./src/backend/base
|
|
run: uv run codeflash
|
|
- name: Minimize uv cache
|
|
run: uv cache prune --ci
|