Skip to content

Automated Benchmarks #7

Automated Benchmarks

Automated Benchmarks #7

name: Automated Benchmarks
on:
pull_request:
branches:
- develop
workflow_dispatch:
jobs:
Run-Benchmakrs:
runs-on: ubuntu-latest
steps:
- name: Checkout Tket
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Create comment
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'The results of the benchmarking are...'
})
- name: Install pytket-benchmarking
run: pip install --pre --index-url https://github_actions:${{ secrets.PRIVATE_PYPI_PASS }}@cqcpythonrepository.azurewebsites.net/simple/ pytket_benchmarking==0.0.2