Replace localstack with minio #430
This file contains 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: SDK tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
sdk-integration-tests: | |
name: SDK integration tests - Python | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Install python | |
run: uv python install | |
- name: Run SDK integration tests | |
run: AUTO_TEST_RUN=y make test-sdk-integration |