Skip to content

Bump go.opentelemetry.io/otel from 1.22.0 to 1.24.0 #74

Bump go.opentelemetry.io/otel from 1.22.0 to 1.24.0

Bump go.opentelemetry.io/otel from 1.22.0 to 1.24.0 #74

Workflow file for this run

name: Tests
on: [push, pull_request]
permissions:
contents: read
jobs:
tests:
strategy:
matrix:
go_version: ['stable']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go_version }}
check-latest: true
- name: Tests
run: go test -v -race -cover -coverprofile=coverage.out -covermode=atomic ./...
- name: Update Coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out