Generated beta models and request builders #487
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/5.0', 'master' ] | |
pull_request: | |
branches: [ 'feature/5.0', 'master' ] | |
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 | |
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 | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'csharp' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |