Skip to content

Bump typing-extensions from 4.10.0 to 4.12.2 #855

Bump typing-extensions from 4.10.0 to 4.12.2

Bump typing-extensions from 4.10.0 to 4.12.2 #855

Workflow file for this run

name: Run pyright.
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry && pipx install poethepoet
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "poetry"
- name: Validate pyproject.toml
run: poetry check
- name: Install dependencies
run: poetry install --with dev,docs,speedups,examples
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v2