Skip to content

Commit

Permalink
Fix Upload Github Action (#128)
Browse files Browse the repository at this point in the history
* Add CI fix

* Split build plugin and test actions

---------

Co-authored-by: Christina Lee <chrissie.c.l@gmail.com>
Co-authored-by: Matthew Silverman <matthews@xanadu.ai>
  • Loading branch information
3 people committed Jun 20, 2023
1 parent b4a0cc1 commit 399defc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,14 @@ jobs:
- name: Run Forest QVM
run: docker run --rm -d -p 5000:5000 rigetti/qvm -S

- name: Install plugin and test dependencies
- name: Build and install Plugin
run: |
python -m pip install --upgrade pip wheel
python setup.py bdist_wheel
pip install dist/PennyLane*.whl
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install '.[test]'
- name: Run tests
Expand Down

0 comments on commit 399defc

Please sign in to comment.