build(deps): bump getsentry/testing-ai-sdk-integrations from d7e581bcf00d5d60f231a96dfa8218479b7618af to 75aaa51b031dd2713111ca94a99d8ca0b0e8eb6d #21188
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/** | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint Sources | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 | |
| with: | |
| python-version: 3.14 | |
| - name: Ruff check | |
| run: uv run ruff check tests sentry_sdk | |
| - name: Ruff format | |
| run: uv run ruff format --check tests sentry_sdk | |
| - name: Find raise from None | |
| run: uv run python scripts/find_raise_from_none.py | |
| - name: Mypy | |
| run: uv run --group typing mypy sentry_sdk | |
| build_lambda_layer: | |
| name: Build Package | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 | |
| with: | |
| python-version: 3.14 | |
| - name: Build Packages | |
| run: | | |
| echo "Building SDK dist wheel and tar.gz" | |
| uv build | |
| echo "Building AWS Lambda Layer" | |
| uv run --group aws --with-editable . python scripts/build_aws_lambda_layer.py | |
| - name: Upload Python Packages | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| with: | |
| name: artifact-build_lambda_layer | |
| path: | | |
| dist/* | |
| if-no-files-found: 'error' | |
| docs: | |
| name: Build SDK API Doc | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 | |
| with: | |
| python-version: 3.14 | |
| - run: | | |
| rm -rf docs/_build | |
| uv run --group docs sphinx-build -vv -W -b html docs/ docs/_build | |
| cd docs/_build && zip -r gh-pages ./ | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| with: | |
| name: artifact-docs | |
| path: | | |
| docs/_build/gh-pages.zip | |
| if-no-files-found: 'error' |