Added support to read diagnostics config from the path defined in environment variable #523
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 verify that every solution in the repo successfully compiles. | |
name: Sanity Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
sanity-build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
solution: [ | |
./NETCORE/ApplicationInsights.AspNetCore.sln, | |
./Everything.sln, | |
./ProjectsForSigning.sln, | |
./examples/Examples.sln, | |
./LOGGING/Logging.sln, | |
./BASE/Microsoft.ApplicationInsights.sln, | |
./WEB/Src/Microsoft.ApplicationInsights.Web.sln] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup dotnet | |
uses: actions/[email protected] | |
with: | |
dotnet-version: | | |
3.1.x | |
6.0.x | |
7.0.x | |
- name: Restore | |
run: dotnet restore ${{ matrix.solution }} | |
- name: Build | |
run: dotnet build ${{ matrix.solution }} |