Skip to content

chore(deps): bump go.opentelemetry.io/otel/sdk from 1.39.0 to 1.40.0 #184

chore(deps): bump go.opentelemetry.io/otel/sdk from 1.39.0 to 1.40.0

chore(deps): bump go.opentelemetry.io/otel/sdk from 1.39.0 to 1.40.0 #184

Workflow file for this run

name: "Unit tests"
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unitests:
name: Unit tests
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go mod download
- run: go build ./...
- name: Run tests
run: go test -race ./...