Skip to content

feat: Allow custom configuration of otel. #60

feat: Allow custom configuration of otel.

feat: Allow custom configuration of otel. #60

Workflow file for this run

name: .NET ObservabilityPlugin
on:
workflow_dispatch:
push:
branches: ['main']
pull_request:
branches: ['main']
paths:
- 'sdk/@launchdarkly/observability-dotnet/**'
- '.github/workflows/dotnet-plugin.yml'
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9
with:
dotnet-version: '8.0.x'
- run: dotnet restore
working-directory: sdk/@launchdarkly/observability-dotnet
- run: dotnet build --no-restore
working-directory: sdk/@launchdarkly/observability-dotnet
- run: dotnet test --no-restore
working-directory: sdk/@launchdarkly/observability-dotnet