Release 0.39.0 #16
Workflow file for this run
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
name: Upload | |
on: | |
release: | |
types: [published] | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Run Forest Quilc | |
run: docker run --rm -d -p 5555:5555 rigetti/quilc:1.23.0 -R | |
- name: Run Forest QVM | |
run: docker run --rm -d -p 5000:5000 rigetti/qvm -S | |
- 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: | | |
pip install '.[test]' | |
- name: Run tests | |
run: | | |
python -m pytest tests --tb=native | |
- name: Publish | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI }} |