Skip to content

Implementing client.account.get_timeline() #313

Implementing client.account.get_timeline()

Implementing client.account.get_timeline() #313

Workflow file for this run

name: Typing
on:
push:
branches: ["master"]
paths:
- ".github/workflows/typing.yml"
- "**.py"
- "uv.lock"
- "pyproject.toml"
pull_request:
paths:
- ".github/workflows/typing.yml"
- "**.py"
- "uv.lock"
- "pyproject.toml"
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make setup
- name: Typecheck
run: make typecheck