Skip to content

Added confluentinc/confluent-kafka-go instrumentation #7

Added confluentinc/confluent-kafka-go instrumentation

Added confluentinc/confluent-kafka-go instrumentation #7

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
tags:
- '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go_version: [ '1.15', '1.16', '1.17' ]
package:
- github.com/confluentinc/confluent-kafka-go/otelconfluent
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
- name: Install go dependencies & run tests
shell: script -q -e -c "bash {0}"
run: |
cd instrumentation/${{ matrix.package }}
go get -t -v ./...
go test -count=1 -v -cover ./...