Skip to content

Feat/rework producer serializer #28

Feat/rework producer serializer

Feat/rework producer serializer #28

Workflow file for this run

name: Docker Build for PR
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
pull_request:
branches: [ "main" ]
env:
TEST_FULL_IMAGE_NAME: local/kapoeira:test
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/build-push-action
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
# Build locally Docker image with Buildx
# https://github.com/docker/build-push-action
- name: Docker build with unit tests
id: build-and-test
uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 # v6.5.0
with:
context: .
load: true
tags: ${{ env.TEST_FULL_IMAGE_NAME }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Launch Kafka environment
run: |
docker compose up -d
- name: Run integration tests
run: |
docker compose run --rm --name kapoeira-it kapoeira
- name: Stop Kafka environment
run: |
docker compose down