From 1de7ef2e2d067c2839818a5686d6bbac5394f769 Mon Sep 17 00:00:00 2001 From: Saurabh Misra Date: Wed, 29 Oct 2025 16:18:52 -0700 Subject: [PATCH] Run Codeflash with async option codeflash now supports async code optimization. this enables it. soon we will make this be default behavior (after this becomes GA) --- .github/workflows/codeflash.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeflash.yaml b/.github/workflows/codeflash.yaml index 65382361a2..a44abf6cf4 100644 --- a/.github/workflows/codeflash.yaml +++ b/.github/workflows/codeflash.yaml @@ -38,7 +38,7 @@ jobs: - name: Create test dir run: mkdir -p codeflash-tests - name: Run Codeflash to optimize code - run: uv run codeflash + run: uv run codeflash --async - name: remove test dir run: |- rm -rf codeflash-tests