From 4c7d0baa001279faa0c0d1ca5ebf09a0fc8272d0 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 27 Nov 2025 10:10:27 -0800 Subject: [PATCH] Delete .github/workflows/benchmark-gemini.yml --- .github/workflows/benchmark-gemini.yml | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/benchmark-gemini.yml diff --git a/.github/workflows/benchmark-gemini.yml b/.github/workflows/benchmark-gemini.yml deleted file mode 100644 index a39b707..0000000 --- a/.github/workflows/benchmark-gemini.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Run Gemini Benchmark - -on: - workflow_dispatch: - -jobs: - benchmark: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Install dependencies - run: npm install - - - name: Run benchmark script - run: npm start -- --gemini - env: - GOOGLE_KEY: ${{ secrets.GOOGLE_KEY }} - - - name: Commit and push if changed - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git add README tests results.json - git diff --staged --quiet || (git commit -m "Docs: Update Gemini benchmark results" && git push)