Skip to content

chore(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc from 0.0.0-20240801233905-f7977e064c9c to 0.8.0 in /provider #7

chore(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc from 0.0.0-20240801233905-f7977e064c9c to 0.8.0 in /provider

chore(deps): Bump go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc from 0.0.0-20240801233905-f7977e064c9c to 0.8.0 in /provider #7

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
paths:
- '.github/workflows/provider-go.yaml'
- 'provider/**'
pull_request:
branches: ["main"]
paths:
- '.github/workflows/provider-go.yaml'
- 'provider/**'
env:
GOLANGCI_VERSION: "v1.61"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./provider
strategy:
matrix:
module:
- .
- examples/http-server
- examples/keyvalue-inmemory
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "./provider/go.mod"
- name: Build
run: go build -C ${{ matrix.module }} -v ./...
- name: Test
run: go test -C ${{ matrix.module }} -v ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "./provider/go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_VERSION }}
working-directory: ./provider