Add proper span handling to factories through extension trait #266
Workflow file for this run
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: Ractor Cluster integration tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'ractor_cluster*/**' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths: | |
- 'ractor_cluster*/**' | |
jobs: | |
test: | |
name: Test ractor_cluster with Docker based networked images | |
runs-on: ${{matrix.os}}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [stable] | |
os: [ubuntu] | |
features: [blanket_serde, cluster] | |
steps: | |
- uses: actions/checkout@main | |
- name: Build the docker image | |
working-directory: . | |
run: | | |
FEATURES=${{matrix.features}} docker compose build | |
- name: Authentication Handshake | |
working-directory: . | |
run: | | |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/auth-handshake.env up --exit-code-from node-b | |
- name: Process Groups | |
working-directory: . | |
run: | | |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/pg-groups.env up --exit-code-from node-b | |
- name: Encrypted communications | |
working-directory: . | |
run: | | |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/encryption.env up --exit-code-from node-b | |
- name: Transitive connections | |
working-directory: . | |
run: | | |
FEATURES=${{matrix.features}} docker compose --env-file ./ractor_cluster_integration_tests/envs/dist-connect.env up --exit-code-from node-c | |