Set version to v2.3.1 #129
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: SonarCloud | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
name: Build and analyze | |
runs-on: windows-latest | |
steps: | |
- name: Install .NET 6.0 | |
uses: actions/setup-dotnet@main | |
with: | |
dotnet-version: 6.x | |
- name: Install .NET 7.0 | |
uses: actions/setup-dotnet@main | |
with: | |
dotnet-version: 7.x | |
- name: Install .NET workload Android | |
shell: powershell | |
run: | | |
dotnet workload install android | |
- name: Set up JDK 11 | |
uses: actions/setup-java@main | |
with: | |
java-version: '11' | |
java-package: jdk | |
distribution: 'zulu' | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Cache SonarCloud packages | |
uses: actions/cache@main | |
with: | |
path: ~\sonar\cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache SonarCloud scanner | |
id: cache-sonar-scanner | |
uses: actions/cache@main | |
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 CoverageConverter | |
shell: powershell | |
run: | | |
dotnet tool install --global dotnet-coverageconverter | |
- 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: | | |
$LatestGitTag = git describe --tags | |
.\.sonar\scanner\dotnet-sonarscanner begin /k:"sungaila_PDFtoImage" /o:"sungaila" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /v:"$LatestGitTag" /d:sonar.cs.vstest.reportsPaths="**/*.trx" /d:sonar.cs.vscoveragexml.reportsPaths="**/*.coveragexml" | |
dotnet build src\PDFtoImage.sln -c Debug -p:VersionSuffix=ci | |
dotnet test src\Tests\Tests.csproj --logger trx --collect "Code Coverage" | |
dotnet-coverageconverter --CoverageFilesFolder "src\Tests\TestResults" | |
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}" |