Skip to content

chore(deps): bump go.opentelemetry.io/otel/metric from 1.42.0 to 1.43.0 #126

chore(deps): bump go.opentelemetry.io/otel/metric from 1.42.0 to 1.43.0

chore(deps): bump go.opentelemetry.io/otel/metric from 1.42.0 to 1.43.0 #126

Workflow file for this run

name: Lint Go Code
permissions:
contents: read
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- name: Set up Go
uses: actions/setup-go@19bb51245e9c80abacb2e91cc42b33fa478b8639
with:
go-version: '1.25.7'
- name: Install golangci-lint
run: |
curl -sSfL https://github.com/golangci/golangci-lint/releases/download/v2.4.0/golangci-lint-2.4.0-linux-amd64.tar.gz | tar -xzv -C /tmp
mv /tmp/golangci-lint-*/golangci-lint /usr/local/bin/
- name: Run golangci-lint
run: golangci-lint run --timeout 5m
- name: Run gofmt
run: |
gofmt -s -w .
git diff --exit-code