Bump dependencies and add manual type-stubs for PyQt6. (#228) #1052
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: linters | |
| on: [push, pull_request] | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: "basic_games" | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.13 | |
| - uses: abatilo/actions-poetry@v2 | |
| - name: Install | |
| run: | | |
| cd basic_games | |
| poetry --no-root install | |
| - name: Lint | |
| run: | | |
| cd basic_games | |
| poetry run poe lint |