diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml new file mode 100644 index 0000000..49dc62c --- /dev/null +++ b/.github/workflows/sonarqube.yml @@ -0,0 +1,48 @@ +name: SonarCloud +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened] +jobs: + build: + name: Build and analyze + runs-on: ubuntu-latest + steps: + - name: Set up Docker + run: | + docker version + docker pull postgres --platform=linux/amd64 + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: 'zulu' # Alternative distribution options are available. + - uses: actions/checkout@v3 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Verify Git installation + run: | + git --version + ls -a + - name: Cache SonarCloud packages + uses: actions/cache@v3 + with: + path: ~\sonar\cache + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Install SonarCloud scanner + run: | + dotnet tool install --global dotnet-sonarscanner + - name: Build and analyze + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: | + dotnet-sonarscanner begin /k:"MadWorldNL_FoundationLibraries" /o:"madworldnl" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.projectBaseDir="/home/runner/work/FoundationLibraries/FoundationLibraries" /d:sonar.cs.opencover.reportsPaths=TestResults/*/coverage.opencover.xml /d:sonar.coverage.exclusions="**Test*.cs" + dotnet workload restore ./sources/MadWorldNL.FoundationLibraries.sln; + dotnet restore ./sources/MadWorldNL.FoundationLibraries.sln; + dotnet build ./sources/MadWorldNL.FoundationLibraries.sln --no-restore -c Release; + dotnet test ./sources/MadWorldNL.FoundationLibraries.sln --no-build --no-restore -c Release --blame-hang-timeout 5min --collect:"XPlat Code Coverage" --results-directory TestResults/ -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover; + dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"