Skip to content

Merge pull request #432 from UCL-CCS/hackathon2024 #630

Merge pull request #432 from UCL-CCS/hackathon2024

Merge pull request #432 from UCL-CCS/hackathon2024 #630

Workflow file for this run

name: Benchmark
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[tests]
- name: Benchmark with pytest
run: |
pytest tests/test_db_benchmark.py --benchmark-json output.json
- name: Store benchmark result
uses: rhysd/github-action-benchmark@v1
with:
tool: 'pytest'
output-file-path: output.json
github-token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
auto-push: true