fix: search route #2
Workflow file for this run
This file contains hidden or 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
| name: Benchmark Repo Iteration | |
| on: | |
| pull_request: | |
| jobs: | |
| benchmark: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Wait for server to be up (if needed) | |
| run: | | |
| echo "Sleeping 30s to allow server to start (adjust as needed)" | |
| sleep 30 | |
| - name: Benchmark repo iteration | |
| run: | | |
| RESPONSE=$(curl -s ${{ secrets.BENCHMARK_URL }}/api/repo/benchmark) | |
| echo "Benchmark response: $RESPONSE" | |
| echo "$RESPONSE" | jq '.' |