Implemented itemlot, weapondescriptions and loading screen items for … #212
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: build | |
on: push | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-2019 | |
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: setup-msbuild | |
uses: microsoft/[email protected] | |
- name: dotnet restore | |
run: dotnet restore | |
#Setup sonarqube dependencies, run scan | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.11 | |
- 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.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="${{ secrets.SONAR_HOST_URL }}" /d:sonar.exclusions=src/cli/Program.cs | |
msbuild SoulSplitter.sln -t:rebuild -property:Configuration=Debug | |
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}" | |
- name: run NUnit tests | |
shell: powershell | |
run: packages\NUnit.ConsoleRunner.3.15.0\tools\nunit3-console.exe tests\SoulMemory.Tests\bin\x64\Debug\SoulMemory.Tests.dll tests\SoulSplitter.Tests\bin\x64\Debug\SoulSplitter.Tests.dll |