Allow org.apache names in Connect JSON schema (#123) #130
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
kafka: | |
image: bitnami/kafka:3.3 | |
env: | |
ALLOW_PLAINTEXT_LISTENER: yes | |
KAFKA_BROKER_ID: 1 | |
KAFKA_CFG_ADVERTISED_LISTENERS: PLAINTEXT://127.0.0.1:9092 | |
KAFKA_CFG_CONTROLLER_LISTENER_NAMES: CONTROLLER | |
KAFKA_CFG_CONTROLLER_QUORUM_VOTERS: [email protected]:9093 | |
KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT | |
KAFKA_CFG_LISTENERS: PLAINTEXT://:9092,CONTROLLER://:9093 | |
KAFKA_CFG_NODE_ID: 1 | |
KAFKA_CFG_PROCESS_ROLES: broker,controller | |
KAFKA_ENABLE_KRAFT: yes | |
ports: | |
- 9092:9092 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- run: make fmt | |
- run: make tidy | |
- run: make vet | |
- run: make test-unit | |
- run: make test-system | |
- run: make test-system ZTEST_TAG=kafka |