Fix language display #97
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: lint | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| branches: | |
| - dev | |
| jobs: | |
| lint: | |
| runs-on: windows-2022 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.x | |
| - name: Install Hatch | |
| run: pip install hatch | |
| - name: Create Hatch virtual env | |
| run: hatch env create | |
| - name: Lint with Ruff | |
| run: hatch run uvx ruff check | |
| - name: Lint with Pyright | |
| run: hatch run uvx pyright |