set python min version to 3.13 (asyncio features) #5
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: Pull Request Checks | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| lint-format: | |
| name: Check linting and formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: Set up workspace | |
| uses: ./.github/actions/setup-workspace | |
| - name: Check formatting and lint | |
| run: ruff check --output-format=github src | |
| shell: bash | |
| typing: | |
| name: Check static typing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: Set up workspace | |
| uses: ./.github/actions/setup-workspace | |
| - name: Check static typing | |
| run: basedpyright src | |
| shell: bash |