forked from fake-afik/my-best-repo
-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (31 loc) · 927 Bytes
/
codeflash.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: CodeFlash
on:
pull_request:
workflow_dispatch:
jobs:
optimize:
name: Optimize new code in this PR
runs-on: ubuntu-latest
env:
CODEFLASH_API_KEY: ${{ secrets.CODEFLASH_API_KEY }}
CODEFLASH_AI_KEY: ${{ secrets.CODEFLASH_AI_KEY }}
PR_NUMBER: ${{ github.event.number }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run CodeFlash to optimize code
id: optimize_code
run: |
poetry env use python
poetry run codeflash --test-framework unittest --test-root code_to_optimize/tests/unittest