Skip to content

Bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc from 1.23.1 to 1.28.0 #12

Bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc from 1.23.1 to 1.28.0

Bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc from 1.23.1 to 1.28.0 #12

Workflow file for this run

name: "Test"
on:
push:
branches:
- master
- main
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
types: [ opened, synchronize ]
branches:
- master
- main
paths-ignore:
- 'docs/**'
- '*.md'
workflow_dispatch:
jobs:
# Generate mocks
generate-mocks:
name: "Generate mocks"
runs-on: ubuntu-latest
container: vektra/mockery:v2.38.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate mocks
run: |
mockery --all
- name: Commit mocks
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[Gen] Generated mocks"
# Run unit tests
tests:
name: "Run unit tests"
needs:
- generate-mocks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21.1
- name: Install dependencies and run tests
run: |
go mod download
go test -v ./...