Fixed flake8 #6
Workflow file for this run
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: Pyright | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - "**" | |
| jobs: | |
| pyright: | |
| name: Run Pyright | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.13" | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Install Pyright | |
| run: pip install pyright | |
| - name: Run Pyright | |
| run: pyright |