release: 0.3.3 #39
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 . |