Skip to content

chore(deps): bump go.opentelemetry.io/otel from 1.21.0 to 1.23.1 #29

chore(deps): bump go.opentelemetry.io/otel from 1.21.0 to 1.23.1

chore(deps): bump go.opentelemetry.io/otel from 1.21.0 to 1.23.1 #29

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
env:
UT_PAYPAL_ID: ${{ secrets.UT_PAYPAL_ID }}
UT_PAYPAL_SECRET: ${{ secrets.UT_PAYPAL_SECRET }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}