Skip to content

Update README with E2B API key authentication info #52

Update README with E2B API key authentication info

Update README with E2B API key authentication info #52

name: Build and Test
on:
push:
jobs:
build:
name: Build, Typecheck, and Test Python
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python 3.13
run: uv python install 3.13
- name: Install the project
run: uv sync --all-extras --dev
- name: Test All Python
run: uv run python3 -m pytest -vv -n auto .
- name: Check Python Types
run: uvx ty check
- name: Build
run: uv build