Update benchmark results (2026-05-25 07:32 UTC) #79
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: PR Validation | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: validation-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| benchmark: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install package | |
| run: pip install -e . | |
| - name: Install test dependencies | |
| run: pip install pytest | |
| - name: Run tests | |
| run: python -m pytest tests/ -x -q | |
| - name: Run benchmarks | |
| run: python -m python_lsp_compare bench-servers --baseline-server pyright | |
| - name: Check for regressions | |
| run: python tools/check_benchmark_regression.py "$(ls results/bench-servers/summary-*.json | tail -1)" |