Skip to content

Add a TwexAPI Prefect collection for public X reads. #1

Add a TwexAPI Prefect collection for public X reads.

Add a TwexAPI Prefect collection for public X reads. #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v6
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --dev
- run: uv run ruff format --check .
- run: uv run ruff check .
- run: uv run pytest