Skip to content

updating pennylane version #175

updating pennylane version

updating pennylane version #175

name: Formatting Check
on:
- pull_request
jobs:
black:
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.11
- name: Install dependencies
run: pip install black
- uses: actions/checkout@v2
- name: Run Black
run: |
black -l 100 docs/ --check
black -l 100 test/ --check
black -l 100 src/ --check