Update Sphinx-action version to tag #191
This file contains hidden or 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: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.4.1 | |
| 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 | |
| - uses: actions/checkout@v2 | |
| - name: Run Black | |
| run: black -l 100 pennylane_orquestra/ --check |