Skip to content

Declare is_awaitable as a type guard for Awaitables #528

Declare is_awaitable as a type guard for Awaitables

Declare is_awaitable as a type guard for Awaitables #528

Workflow file for this run

name: Code quality
on: [push, pull_request]
jobs:
lint:
name: 🧹 Lint
runs-on: ubuntu-latest
steps:
- name: Checkout project
id: checkout
uses: actions/checkout@v5
- name: Set up Python 3.13
id: setup-python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install uv
id: setup-uv
uses: astral-sh/setup-uv@v6
- name: Install tox
id: install-tox
run: |
uv pip install --system tox tox-uv
- name: Run code quality tests with tox
id: lint
run: tox
env:
TOXENV: ruff,mypy,docs