NLog Target support ConnectionString with isolated TelemetryClient #742
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Syntax: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
# .NET CLI: https://docs.microsoft.com/dotnet/core/tools/ | |
# Description: The purpose of this workflow is to compile and run unit tests. | |
name: Build And Test, NETCORE | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-test-NETCORE: | |
runs-on: ${{ matrix.os }} | |
env: | |
SOLUTION: ./NETCORE/ApplicationInsights.AspNetCore.sln | |
TEST_RESULTS_DIRECTORY: ${{ github.workspace }}/TestResults | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0, net8.0] | |
include: | |
- os: ubuntu-latest | |
args: "--filter TestCategory!=WindowsOnly" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4.0.0 | |
with: | |
dotnet-version: | | |
3.1.x | |
6.0.x | |
7.0.x | |
8.0.x | |
- name: Restore | |
run: dotnet restore ${{ env.SOLUTION }} | |
- name: Build | |
run: dotnet build ${{ env.SOLUTION }} --configuration Release --no-restore | |
- name: Test | |
id: test1 | |
continue-on-error: true | |
run: dotnet test ${{ env.SOLUTION }} --framework ${{ matrix.framework }} --configuration Release --no-build --results-directory ${{ env.TEST_RESULTS_DIRECTORY }} --logger:"console;verbosity=detailed" --logger:"trx;logfileprefix=testResults_" ${{ matrix.args }} | |
- name: Retry tests | |
if: steps.test1.outcome=='failure' | |
run: pwsh -f ./.scripts/build_RetryTests.ps1 -TestResultsDirectory ${{ env.TEST_RESULTS_DIRECTORY }} -WorkingDirectory ${{ github.workspace }} |