Raise error if broadcasting with MottonenStatePreparation
and BasisStatePreparation
compute_decomposition
#21022
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: Pylint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
pylint: | |
runs-on: ubuntu-latest | |
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.9 | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Run pylint | |
uses: ricardochaves/[email protected] | |
with: | |
python-root-list: "pennylane" | |
use-pylint: True | |
use-pycodestyle: false | |
use-flake8: false | |
use-black: false | |
use-mypy: false | |
use-isort: false | |
extra-pylint-options: "--rcfile .pylintrc" | |
extra-pycodestyle-options: "" | |
extra-flake8-options: "" | |
extra-black-options: "" | |
extra-mypy-options: "" | |
extra-isort-options: "" | |
- name: Run pylint (tests) | |
uses: ricardochaves/[email protected] | |
with: | |
python-root-list: "tests" | |
use-pylint: True | |
use-pycodestyle: false | |
use-flake8: false | |
use-black: false | |
use-mypy: false | |
use-isort: false | |
extra-pylint-options: "--rcfile tests/.pylintrc" | |
extra-pycodestyle-options: "" | |
extra-flake8-options: "" | |
extra-black-options: "" | |
extra-mypy-options: "" | |
extra-isort-options: "" |