add sonar coverage #27
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: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
- release/* | |
paths-ignore: | |
- .gitignore | |
- CODE_OF_CONDUCT.md | |
- LICENSE | |
- README.md | |
workflow_call: | |
inputs: | |
build-artifacts: | |
type: boolean | |
required: true | |
default: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout code | |
- name: Cache NuGet packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Install .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Restore solution | |
run: dotnet restore ${{ env.SOLUTION_PATH }} | |
- name: Build solution | |
run: dotnet build ${{ env.SOLUTION_PATH }} --no-restore --configuration Release | |
- name: Test solution with coverage | |
run: | | |
dotnet test ${{ env.SOLUTION_PATH }} --no-build --configuration Release --collect:"Code Coverage" --results-directory ./TestResults -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover | |
- name: SonarCloud Scan | |
uses: sonarsource/[email protected] | |
env: | |
SONAR_TOKEN: ${{ secrets.SONARCLOUND_TOKEN }} | |
with: | |
args: > | |
-Dsonar.projectKey=christianrd_FastCleanArchitecture | |
-Dsonar.organization=christianrd | |
-Dsonar.cs.opencover.reportPaths=TestResults/coverage.opencover.xml | |
-Dsonar.Tests=tests/ | |
- name: Publish website | |
if: ${{ inputs.build-artifacts == true }} | |
run: | | |
dotnet publish --configuration Release --runtime win-x86 --self-contained --output ./publish | |
cd publish | |
zip -r ./publish.zip . | |
working-directory: ./src/API/ | |
- name: Upload website artifact (website) | |
if: ${{ inputs.build-artifacts == true }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: website | |
path: ./src/API/publish/publish.zip | |
if-no-files-found: error |