Switch from bitnamilegacy/kafka to soldevelo/kafka (maintained fork) #419
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: Temporal Integration Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| tests: | |
| name: "Integration testing with sticky cache disabled" | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # Give the default GITHUB_TOKEN write permission to commit and push the | |
| # added or changed files to the repository. | |
| contents: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| test-subset: | |
| - "a-m" | |
| - "n-z" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: "Set up temporal environment" | |
| run: docker compose -f docker-compose/ci-temporal-dependencies.yml up -d | |
| - name: "Test against temporal" | |
| run: make ci-temporal-integ-test-disable-sticky startsWith=${{ matrix['test-subset'] }} | |
| - name: Dump docker logs | |
| if: always() | |
| uses: jwalton/gh-docker-logs@v2 |