From 3881bccb4f28e1c34e984a1ab3831f1826598c16 Mon Sep 17 00:00:00 2001 From: Guillaume Gnaegi <58469901+ggnaegi@users.noreply.github.com> Date: Sat, 21 Oct 2023 10:44:04 +0200 Subject: [PATCH] Create code_quality_sonarqube.yml --- .github/workflows/code_quality_sonarqube.yml | 41 ++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/code_quality_sonarqube.yml diff --git a/.github/workflows/code_quality_sonarqube.yml b/.github/workflows/code_quality_sonarqube.yml new file mode 100644 index 000000000..871889f72 --- /dev/null +++ b/.github/workflows/code_quality_sonarqube.yml @@ -0,0 +1,41 @@ +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/sonarscan-dotnet@v2.2.2 + 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 }}