Skip to content

Add support for Pennylane Lightning backend to QIR-EE #140

Add support for Pennylane Lightning backend to QIR-EE

Add support for Pennylane Lightning backend to QIR-EE #140

Workflow file for this run

name: pr
run-name: >-
${{github.event.pull_request.title}}
(#${{github.event.number}})
on:
pull_request:
branches:
- main
paths-ignore:
- 'scripts/dev'
concurrency:
group: pr-${{github.ref}}-${{github.event.number}}-${{github.workflow}}
cancel-in-progress: true
jobs:
build-fast:
uses: ./.github/workflows/build-fast.yml
build-lightning:
uses: ./.github/workflows/build-lightning.yml

Check failure on line 21 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr.yml" -> "./.github/workflows/build-lightning.yml" : failed to fetch workflow: workflow was not found.
# Specifying a dependent job allows us to select a single "requires" check in the project GitHub settings
all:
if: ${{ always() }}
needs:
- build-fast
- build-lightning
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
# vim: set nowrap tw=100: