Skip to content

Important PennyLane tests are converted to double as benchmarks #2

Important PennyLane tests are converted to double as benchmarks

Important PennyLane tests are converted to double as benchmarks #2

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
concurrency:
group: benchmarks-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
uses: ./.github/workflows/interface-unit-tests.yml
with:
branch: ${{ github.ref }}
# Run the benchmark tests if the label `ci:run-benchmarks` is attached to the PR.
# Not running it on push events.
run_benchmarks_ci: >-

Check failure on line 20 in .github/workflows/benchmarks.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/benchmarks.yml (Line: 20, Col: 26): Invalid input, run_benchmarks_ci is not defined in the referenced workflow.
${{
github.event_name == 'pull_request'
&& contains(github.event.pull_request.labels.*.name, 'ci:run-benchmarks')
|| false
}}