-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test out Codeflash Signed-off-by: GitHub <[email protected]> * Ignore new lint Signed-off-by: GitHub <[email protected]> --------- Signed-off-by: GitHub <[email protected]>
- Loading branch information
1 parent
8de9ed7
commit ab796d7
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
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 |
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