Release 0.39.0 #22
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: 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 wheel qsimcirq pytest pytest-cov pytest-mock --upgrade | |
- 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 }} |