Skip to content

set python min version to 3.13 (asyncio features) #5

set python min version to 3.13 (asyncio features)

set python min version to 3.13 (asyncio features) #5

Workflow file for this run

---
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