Skip to content

chore(deps): bump google.golang.org/grpc from 1.64.1 to 1.82.1 in /tests-integration #670

chore(deps): bump google.golang.org/grpc from 1.64.1 to 1.82.1 in /tests-integration

chore(deps): bump google.golang.org/grpc from 1.64.1 to 1.82.1 in /tests-integration #670

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
fail-fast: false
matrix:
go: ["1.25", "1.26"]
package:
[
"common",
"influx2otel",
"otel2influx",
"jaeger-influxdb",
"tests-integration",
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Test
run: >
cd ${{ matrix.package }} &&
go test ./...
- name: Fmt
run: >
test -z $(gofmt -s -l ./${{ matrix.package }} | head -n 1) || ( gofmt -s -d ./${{ matrix.package }} ; exit 1 )
- name: Vet
run: >
cd ${{ matrix.package }} &&
go vet ./...
- name: staticcheck
run: >
go install honnef.co/go/tools/cmd/staticcheck@v0.7.0 &&
cd ${{ matrix.package }} &&
staticcheck -f stylish ./...
build-otelcol-influxdb:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: build
run: >
go install go.opentelemetry.io/collector/cmd/builder@v0.101.0 &&
cd otelcol-influxdb &&
builder --config build.yml