Skip to content

chore(deps): update module go.opentelemetry.io/otel/sdk to v1.43.0 [security] - autoclosed #84

chore(deps): update module go.opentelemetry.io/otel/sdk to v1.43.0 [security] - autoclosed

chore(deps): update module go.opentelemetry.io/otel/sdk to v1.43.0 [security] - autoclosed #84

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v7
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...
- name: Check formatting
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "The following files are not formatted correctly:"
gofmt -l .
exit 1
fi