Fix deprecated import path for QubitDevice
#2171
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: Formatting check | |
on: | |
- pull_request | |
jobs: | |
black-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: Install dependencies | |
run: pip install black pylint==2.7.4 | |
- uses: actions/checkout@v2 | |
- name: Run Black | |
run: | | |
black -l 100 pennylane_qiskit/ --check | |
black -l 100 tests/ --check | |
- name: Run Pylint (source files) | |
if: always() | |
run: pylint --rcfile .pylintrc $(find pennylane_qiskit -name "*.py") | |
- name: Run Pylint (test files) | |
if: always() | |
run: pylint --rcfile tests/.pylintrc $(find tests -name "*.py") |