docs: update readmes in python examples #2646
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-integration-tests | |
| on: | |
| push: | |
| paths: | |
| - 'tests/**' | |
| - 'control-plane/**' | |
| - 'data-plane/**' | |
| - '!data-plane/integrations/mcp/**' | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - 'tests/**' | |
| - 'control-plane/**' | |
| - 'data-plane/**' | |
| - '!data-plane/integrations/mcp/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| integration-tests: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: ./.github/actions/setup-go | |
| - name: Setup Rust | |
| uses: ./.github/actions/setup-rust | |
| with: | |
| workspace: ./data-plane | |
| - name: Run integration test suite | |
| working-directory: ./tests | |
| run: task tests:integration | |
| sessions-test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: ./.github/actions/setup-rust | |
| with: | |
| workspace: ./data-plane | |
| - name: Run group communication integration test | |
| working-directory: ./data-plane/testing | |
| run: task test:group-session | |
| - name: Run point to point integration test | |
| working-directory: ./data-plane/testing | |
| run: task test:point-to-point-session |