Add benchmarks #4
This file contains 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: benchmarks_fork_pr_run | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
env: | |
MINIMUM_PYTHON_VERSION: "3.9" | |
UV_VERSION: "0.5.1" | |
# If new code is pushed to a PR branch, then cancel in progress workflows for that PR. Ensures that | |
# we don't waste CI time, and returns results quicker https://github.com/jonhoo/rust-ci-conf/pull/5 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
benchmark_fork_pr_branch: | |
name: ubuntu / ${{ matrix.python-version }} / run fork pr benchmarks | |
# DO NOT REMOVE: For handling Fork PRs see Pull Requests from Forks | |
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
version: ${{ env.UV_VERSION }} | |
enable-cache: true | |
- name: Set up Python ${{ matrix.python-version }} | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: make dev | |
- name: Run Benchmarks for Forked PR | |
run: | | |
uv run pytest --benchmark-json benchmark_results-${{ matrix.python-version }}.json benchmarks | |
- name: Upload Benchmark Results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: benchmark_results-${{ matrix.python-version }}.json | |
path: ./benchmark_results-${{ matrix.python-version }}.json | |
- name: Upload GitHub Pull Request Event | |
uses: actions/upload-artifact@v4 | |
with: | |
name: event.json | |
path: ${{ github.event_path }} |