docs: update readmes in python examples #2851
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
| # Copyright AGNTCY Contributors (https://github.com/agntcy) | |
| # SPDX-License-Identifier: Apache-2.0 | |
| --- | |
| name: ci-test-and-build-data-plane | |
| on: | |
| push: | |
| paths: | |
| - 'data-plane/**' | |
| - '!data-plane/integrations/mcp-proxy/**' | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - 'data-plane/**' | |
| - '!data-plane/integrations/mcp-proxy/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| data-plane-build-and-test: | |
| name: Data plane - build & test | |
| uses: ./.github/workflows/reusable-rust-build-and-test.yaml | |
| with: | |
| working-directory: ./data-plane | |
| data-plane-build-python-wheels: | |
| name: Data plane - Python wheels | |
| uses: ./.github/workflows/reusable-python-build-wheels.yaml | |
| data-plane-docker-build: | |
| name: Build SLIM docker image | |
| uses: ./.github/workflows/reusable-docker-build-push.yaml | |
| with: | |
| bake-targets: slim | |
| image-tag: ${{ github.sha }} | |
| mcp-proxy-docker-build: | |
| name: Build SLIM MCP Proxy docker image | |
| uses: ./.github/workflows/reusable-docker-build-push.yaml | |
| with: | |
| bake-targets: mcp-proxy | |
| image-tag: ${{ github.sha }} | |
| data-plane-bindings-examples-docker-build: | |
| name: Build Python examples docker image | |
| uses: ./.github/workflows/reusable-docker-build-push.yaml | |
| with: | |
| bake-targets: bindings-examples | |
| image-tag: ${{ github.sha }} |