chore(deps): bump Microsoft.VisualStudio.Threading.Analyzers from 17.11.20 to 17.12.19 in /tests/Microsoft.Graph.DotnetCore.Core.Test #1187
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
name: Validate Pull Request | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ 'feature/*', 'main' ] | |
pull_request: | |
branches: [ 'feature/*', 'main' ] | |
permissions: | |
contents: read #those permissions are required to run the codeql analysis | |
actions: read | |
security-events: write | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: windows-latest | |
env: | |
solutionName: Microsoft.Graph.Core.sln | |
relativePath: ./src/Microsoft.Graph.Core | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Setup JDK for android targets | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '11' | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: csharp | |
- name: Install needed dotnet workloads | |
run: dotnet workload install android macos ios maccatalyst | |
- name: Restore nuget dependencies | |
run: dotnet restore ${{ env.solutionName }} | |
- name: Lint the code | |
run: dotnet format --verify-no-changes | |
- name: Build | |
run: dotnet build ${{ env.solutionName }} -c Debug /p:UseSharedCompilation=false,IncludeMauiTargets=true | |
- name: Test | |
run: dotnet test ${{ env.solutionName }} --no-build --verbosity normal -c Debug /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=opencover | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
validate-trimming: | |
name: Validate Project for Trimming | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Validate Trimming warnings | |
run: dotnet publish -c Release -r win-x64 /p:TreatWarningsAsErrors=true /warnaserror -f net8.0 | |
working-directory: ./tests/Microsoft.Graph.DotnetCore.Core.Trimming |