updating sonarscan version #5
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: Ocelot Code Quality Checks | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
push: | |
branches: [ "release/20.0" ] | |
pull_request: | |
branches: [ "release/20.0" ] | |
jobs: | |
CI_Pipeline: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore Ocelot.sln | |
- name: Build | |
run: dotnet build --no-restore Ocelot.sln | |
- name: Unit & Integration Test | |
run: dotnet test --no-build Ocelot.sln /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=opencover | |
- name: SonarScanner for .NET 7 with pull request decoration support | |
uses: highbyte/[email protected] | |
with: | |
sonarProjectKey: ggnaegi_Ocelot | |
sonarProjectName: Ocelot | |
sonarOrganization: ggnaegi | |
dotnetBuildArguments: Ocelot.sln | |
dotnetDisableTests: true | |
sonarBeginArguments: /d:sonar.cs.opencover.reportsPaths="**/*.opencover.xml" /d:sonar.verbose=true /d:sonar.scm.exclusions.disabled=true /d:sonar.coverage.exclusions="**Test*.cs" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |