Skip to content

Bump OpenTelemetry.Api from 1.4.0 to 1.5.1 #48

Bump OpenTelemetry.Api from 1.4.0 to 1.5.1

Bump OpenTelemetry.Api from 1.4.0 to 1.5.1 #48

---
name: Continuous Integration Check
on:
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened, ready_for_review ]
jobs:
ci:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET Core 7.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal