Skip to content

Sync release workflows to main #38

Sync release workflows to main

Sync release workflows to main #38

Workflow file for this run

name: Python SDK CI
on:
push:
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.11"
- run: python -m pip install --upgrade build
- run: python -m build
# Verification only, never auto-fix: the SDK is generated formatted, so a diff here means
# either hand-edited custom code or a regenerate that was not committed. ruff is pinned to
# the release that produced these bytes, since a formatter minor can change them.
- run: python -m pip install "ruff==0.16.1"
- run: ruff format --check .