Skip to content

feat: passEventTimeToKafkaTime added (#109) #154

feat: passEventTimeToKafkaTime added (#109)

feat: passEventTimeToKafkaTime added (#109) #154

Workflow file for this run

name: Integration
on:
push:
branches: [master]
pull_request:
branches: [master]
types: [opened, reopened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
integration:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Start containers
run: make compose
- name: Integration Test
run: go test -v test/integration/integration_test.go
env:
INPUT_PUBLISH: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}