-refatoring the ClosedLoopIdentifier, extracting the code to esimate … #401
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] | |
jobs: | |
build: | |
name: Tests | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout code | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.x' | |
- name: Setup MSBuild Path | |
uses: microsoft/[email protected] | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
# - name: Query nuget folders(figure out where nunit.consolerunner is stored) | |
# run: nuget locals global-packages -list | |
- name: Restore NuGet Packages | |
run: nuget restore TimeSeriesAnalysis.sln | |
- name: Build | |
run: dotnet build TimeSeriesAnalysis.sln -c Debug | |
- name: Run tests | |
run: dotnet test D:\a\TimeSeriesAnalysis\TimeSeriesAnalysis\TimeSeriesAnalysis.Tests\bin\Debug\net6.0\TimeSeriesAnalysis.Tests.dll --filter Category!=NotWorking_AcceptanceTest |