chore(deps): update camunda/zeebe docker tag to v8.6.4 #2647
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: "Test docker-compose.yaml" | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
test_docker_compose_yaml: | |
strategy: | |
matrix: | |
include: | |
- compose_args: "-f docker-compose.yaml" | |
run_e2e_tests: false | |
directory: "" | |
- compose_args: "--profile full" | |
run_e2e_tests: false | |
directory: "docker-compose/camunda-8.6" | |
uses: ./.github/workflows/template-deploy.yaml | |
name: Test deploying from directory "${{ matrix.directory || 'root' }}" | |
secrets: inherit | |
with: | |
compose_args: ${{ matrix.compose_args }} | |
run_e2e_tests: ${{ matrix.run_e2e_tests }} | |
directory: ${{ matrix.directory }} |