added tab that shows killed enemies #108
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: Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name: Restore NuGet packages | |
run: nuget restore SoG_SGreader.sln | |
- name: Build with MSBuild | |
run: msbuild /p:Configuration=Release /m /p:BuildInParallel=true /p:BuildIncrementally=true SoG_SGreader.sln | |
- name: Setup VSTest Console | |
uses: darenm/[email protected] | |
- name: Test | |
run: vstest.console.exe /TestAdapterPath:"packages" SoG_SGreader.Test\bin\Release\SoG_SGreader.Test.dll | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: SoG_SGreader | |
path: SoG_SGreader\bin |