mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
added mypy and codeflash-optimize
This commit is contained in:
parent
a4cb437a8c
commit
758f1d289f
2 changed files with 76 additions and 0 deletions
45
.github/workflows/codeflash-optimize.yaml
vendored
Normal file
45
.github/workflows/codeflash-optimize.yaml
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
name: CodeFlash
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- "**"
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
optimize:
|
||||
name: Optimize new code in this PR
|
||||
if: ${{ github.actor != 'codeflash-ai[bot]' }}
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CODEFLASH_AIS_SERVER: prod
|
||||
POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }}
|
||||
CODEFLASH_API_KEY: ${{ secrets.CODEFLASH_API_KEY }}
|
||||
CODEFLASH_PR_NUMBER: ${{ github.event.number }}
|
||||
COLUMNS: 110
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python 3.11 for CLI
|
||||
uses: astral-sh/setup-uv@v5
|
||||
with:
|
||||
python-version: 3.11.6
|
||||
|
||||
- name: Install dependencies (CLI)
|
||||
run: |
|
||||
uv tool install poetry
|
||||
uv venv
|
||||
source .venv/bin/activate
|
||||
poetry install --with dev
|
||||
|
||||
- name: Run Codeflash to optimize code
|
||||
id: optimize_code
|
||||
run: |
|
||||
source .venv/bin/activate
|
||||
poetry run codeflash
|
||||
31
.github/workflows/mypy.yml
vendored
Normal file
31
.github/workflows/mypy.yml
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
name: Mypy Type Checking for CLI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
type-check-cli:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v5
|
||||
with:
|
||||
version: "0.5.30"
|
||||
|
||||
- name: install poetry as a tool
|
||||
run: uv tool install poetry
|
||||
|
||||
- name: install dependencies
|
||||
run: uvx poetry install --with dev
|
||||
|
||||
- name: Run mypy on allowlist
|
||||
run: uvx poetry run mypy --non-interactive --config-file pyproject.toml @mypy_allowlist.txt
|
||||
Loading…
Reference in a new issue