Skip to content

Bump actions/setup-dotnet from 5.3.0 to 5.4.0 #54

Bump actions/setup-dotnet from 5.3.0 to 5.4.0

Bump actions/setup-dotnet from 5.3.0 to 5.4.0 #54

Workflow file for this run

name: SonarCloud Scan
on:
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
sonarcloud-scan:
# ↓ Change this to "false" to disable the workflow without any alert messages.
if: ${{ true }}
# ↑ Change to "true" (or delete) to enable the workflow.
name: Analyze with SonarCloud
runs-on: windows-latest
permissions:
contents: read
issues: write
steps:
- name: Set up Java JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
with:
java-version: 17
distribution: "zulu" # Alternative distribution options are available.
- name: Check out repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up .NET
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1
with:
global-json-file: global.json
- name: Cache SonarCloud packages
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae
with:
path: ~\sonar\cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache SonarCloud scanner
id: cache-sonar-scanner
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae
with:
path: .\.sonar\scanner
key: ${{ runner.os }}-sonar-scanner
restore-keys: ${{ runner.os }}-sonar-scanner
- name: Install SonarCloud scanner
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
shell: powershell
run: |
New-Item -Path .\.sonar\scanner -ItemType Directory
dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner
- name: Install Coverlet as global dotnet tool
shell: powershell
run: |
dotnet tool install --global coverlet.console
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
shell: powershell
run: |
.\.sonar\scanner\dotnet-sonarscanner begin /k:"gaepdit_notifications" /o:"gaepdit" /d:sonar.token="$env:SONAR_TOKEN" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths=coverage.xml /d:sonar.exclusions=samples/**
dotnet build
coverlet .\_artifacts\bin\Notifications.API.Tests\debug\Notifications.API.Tests.dll --target "dotnet" --targetargs "test tests/Notifications.API.Tests --no-build" -f=opencover -o="coverage.xml"
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="$env:SONAR_TOKEN"