Skip to content

Try with slashes

Try with slashes #256

Workflow file for this run

name: build
on: [push, workflow_dispatch]
jobs:
build:
name: Build
runs-on: windows-latest
steps:
#Setup Shallow clone
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
#Setup Setup dotnet & restore dependencies.
- name: setup dotnet
uses: actions/setup-dotnet@v3
- name: dotnet restore
run: dotnet restore
#Setup sonarqube dependencies, run scan
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'microsoft'
java-version: '17'
java-package: jdk
- name: Cache SonarQube packages
uses: actions/cache@v1
with:
path: ~\sonar\cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache SonarQube scanner
id: cache-sonar-scanner
uses: actions/cache@v1
with:
path: .\.sonar\scanner
key: ${{ runner.os }}-sonar-scanner
restore-keys: ${{ runner.os }}-sonar-scanner
- name: Install SonarQube 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:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
shell: powershell
run: |
.\.sonar\scanner\dotnet-sonarscanner begin /k:"FrankvdStam_SoulSplitter_AYT9tJW7QlZ0fhD27xsa" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="${{ secrets.SONAR_HOST_URL }}" /d:sonar.cs.opencover.reportsPaths=TestResults/*.xml
dotnet build src/soulsplitter/soulsplitter.csproj
dotnet test -p:CollectCoverage=true -p:CoverletOutput=../../TestResults/ -p:MergeWith=../../TestResults/ -p:CoverletOutputFormat=opencover
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"