chore: Classify release job to comply with 1ES standard #844
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: | |
runs-on: ubuntu-latest | |
env: | |
solutionName: Microsoft.Graph.Beta.sln | |
projectName: src/Microsoft.Graph/Microsoft.Graph.Beta.csproj | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 7.x | |
- name: Restore dependencies | |
run: dotnet restore ${{ env.solutionName }} | |
- name: Build for netstandard2.0 | |
run: dotnet build ${{ env.projectName }} -f netstandard2.0 --no-restore -c Release | |
- name: Build for netstandard2.1 | |
run: dotnet build ${{ env.projectName }} -f netstandard2.1 --no-restore -c Release | |
- name: Build for net5.0 | |
run: dotnet build ${{ env.projectName }} -f net5.0 --no-restore -c Release | |
- name: Build | |
run: dotnet build ${{ env.solutionName }} --no-restore -c Release | |
- name: Test | |
run: dotnet test ${{ env.solutionName }} --no-build --verbosity normal -c Release /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=opencover | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
env: | |
solutionName: Microsoft.Graph.Beta.sln | |
projectName: src/Microsoft.Graph/Microsoft.Graph.Beta.csproj | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'csharp' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Restore dependencies | |
run: dotnet restore ${{ env.solutionName }} | |
- name: Build for netstandard2.0 | |
run: dotnet build ${{ env.projectName }} -f netstandard2.0 --no-restore -c Release --no-incremental | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |