Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Bump go.opentelemetry.io/otel/sdk from 1.3.0 to 1.32.0 #40

Bump go.opentelemetry.io/otel/sdk from 1.3.0 to 1.32.0

Bump go.opentelemetry.io/otel/sdk from 1.3.0 to 1.32.0 #40

Workflow file for this run

name: "Lint and Test service"
on:
push:
branches:
- master
paths-ignore:
- 'docs/**'
- '.run/**'
- 'api/**'
- 'features/**'
- 'config/**'
- 'deployments/**'
- '*.md'
tags:
- v*
pull_request:
types: [ opened, synchronize ]
branches:
- master
paths-ignore:
- 'docs/**'
- '.run/**'
- 'api/**'
- 'features/**'
- 'config/**'
- 'deployments/**'
- '*.md'
workflow_dispatch:
jobs:
lint:
name: "Run linters"
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: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
# Run unit tests
tests:
name: "Run unit tests"
needs:
- lint
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 ./...