.github/workflows/ci.yml in karafka-2.0.21 vs .github/workflows/ci.yml in karafka-2.0.22

- old
+ new

@@ -99,10 +99,13 @@ steps: - uses: actions/checkout@v3 - name: Install package dependencies run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS" + - name: Remove libzstd-dev to check no supported compressions + run: sudo apt-get -y remove libzstd-dev + - name: Start Kafka with docker-compose run: | docker-compose up -d - name: Set up Ruby @@ -122,7 +125,10 @@ bundle install - name: Run integration tests env: KARAFKA_PRO_LICENSE_TOKEN: ${{ secrets.KARAFKA_PRO_LICENSE_TOKEN }} + KARAFKA_PRO_USERNAME: ${{ secrets.KARAFKA_PRO_USERNAME }} + KARAFKA_PRO_PASSWORD: ${{ secrets.KARAFKA_PRO_PASSWORD }} + KARAFKA_PRO_VERSION: ${{ secrets.KARAFKA_PRO_VERSION }} GITHUB_COVERAGE: ${{matrix.coverage}} run: bin/integrations