add coverlet ms build #12
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: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
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: Acceptance Tests | |
run: dotnet test test/Ocelot.AcceptanceTests/Ocelot.AcceptanceTests.csproj --no-build /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=opencover | |
- name: Rename paths in coverage file (Acceptance Tests) | |
run: sed -i 's|/home/runner/work/Ocelot/Ocelot|/github/workspace|g' /home/runner/work/Ocelot/Ocelot/test/Ocelot.AcceptanceTests/TestResults/coverage.opencover.xml | |
- name: Unit Tests | |
run: dotnet test test/Ocelot.UnitTests/Ocelot.UnitTests.csproj --no-build /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=opencover | |
- name: Rename paths in coverage file (Unit Tests) | |
run: sed -i 's|/home/runner/work/Ocelot/Ocelot|/github/workspace|g' /home/runner/work/Ocelot/Ocelot/test/Ocelot.UnitTests/TestResults/coverage.opencover.xml | |
- 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 }} |