Enable adaptive sampling in Cassandra CI setup #3
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: CIT Docker Compose Cassandra | |
on: | |
merge_group: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
paths: | |
- 'docker-compose/jaeger-docker-compose.yml' | |
- 'scripts/e2e/docker-compose-cassandra.sh' | |
- '.github/workflows/ci-docker-compose-cassandra.yml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
docker-compose-cassandra: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
submodules: true | |
- name: Run docker-compose tests | |
run: bash scripts/e2e/docker-compose-cassandra.sh |