Skip to content

Issue #4 add GitHub workflow for benchmarks #1

Issue #4 add GitHub workflow for benchmarks

Issue #4 add GitHub workflow for benchmarks #1

Workflow file for this run

name: "Benchmarks"
# TODO: trigger based on schedule
# TODO: only run subset of benchmarks
on: [push]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install benchmark dependencies
run: |
python -m pip install qa/tools
python -m pip install -r qa/benchmarks/requirements.txt
- name: Test with pytest
run: |
cd qa/benchmarks
pytest