rigetti-latest-rc #419
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow template for testing plugins against PennyLane release candidate | |
name: rigetti-latest-rc | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
env: | |
PLUGIN_REPO: PennyLaneAI/pennylane-rigetti | |
PLUGIN_BRANCH: master | |
PLUGIN_PACKAGE: pennylane_rigetti | |
PENNYLANE_BRANCH: master | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Run Rigetti Quilc | |
run: docker run --rm -d -p 5555:5555 rigetti/quilc:1.23.0 -R | |
- name: Run Rigetti QVM | |
run: docker run --rm -d -p 5000:5000 rigetti/qvm -S | |
- name: Install requirements | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade pyquil==2.28.2 | |
pip install pytest pytest-mock pytest-cov flaky | |
pip freeze | |
- name: Install PennyLane and Plugin | |
run: | | |
pip install git+https://github.com/PennyLaneAI/[email protected] \ | |
git+https://github.com/${{ env.PLUGIN_REPO }}.git@${{ env.PLUGIN_BRANCH }} | |
- uses: actions/checkout@v2 | |
with: | |
repository: ${{ env.PLUGIN_REPO }} | |
path: plugin_repo | |
ref: ${{ env.PLUGIN_BRANCH }} | |
- name: Run PennyLane device integration tests | |
run: | | |
pl-device-test --device=rigetti.numpy_wavefunction --tb=short --skip-ops --shots=None | |
pl-device-test --device=rigetti.wavefunction --tb=short --skip-ops --shots=20000 | |
- name: Run plugin tests | |
run: python -m pytest plugin_repo/tests --tb=short |