Skip to content

Update GitHub Artifact Actions (major) #1121

Update GitHub Artifact Actions (major)

Update GitHub Artifact Actions (major) #1121

Workflow file for this run

---
name: Python benchmarks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "requirements_dev.txt"
activate-environment: true
- name: Install dependencies
run: |
uv pip install -r requirements_dev.txt
- name: Run benchmarks with pytest
run: |
pytest --benchmark-only