Skip to content

Feature/6.4 refactoring components #58

Feature/6.4 refactoring components

Feature/6.4 refactoring components #58

Workflow file for this run

name: SonarQube
on:
push:
branches:
- main
paths:
- "src/**"
pull_request:
types: [opened, synchronize, reopened]
paths:
- "src/**"
permissions:
contents: read
issues: write
pull-requests: write
jobs:
build:
name: Build and analyze
runs-on: windows-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: "zulu"
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache SonarQube Cloud packages
uses: actions/cache@v4
with:
path: ~\sonar\cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache SonarQube Cloud scanner
id: cache-sonar-scanner
uses: actions/cache@v4
with:
path: .\.sonar\scanner
key: ${{ runner.os }}-sonar-scanner
restore-keys: ${{ runner.os }}-sonar-scanner
- name: Install SonarQube Cloud 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: Build and analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
shell: powershell
run: |
.\.sonar\scanner\dotnet-sonarscanner begin /k:"Space-Wizard-Studios_sw-game-dice-rolling" /o:"space-wizard-studios" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.sources="src" /d:sonar.tests="src/tests" /d:sonar.exclusions="src/addons/**, !src/addons/@spacewiz/**" /d:sonar.scanner.scanAll=false
dotnet build src/dice-rolling.sln
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"