Test Copilot suggestion for linking codeblock #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codeflash | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
optimize: | |
name: Optimize new 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 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Project Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
pip install codeflash | |
- name: Run Codeflash to optimize code | |
id: optimize_code | |
run: | | |
codeflash |