Allow using existing DEFAULT layer when importing model #33
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: | |
branches: [master, main] | |
pull_request: | |
branches: [master, main] | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v2 | |
- name: Restore Packages | |
run: nuget restore IndustrialPark.sln | |
- name: Build solution | |
run: msbuild IndustrialPark.sln -t:rebuild -property:Configuration=Release -property:platform="Any CPU" | |
- name: Run unit tests | |
uses: rusty-bender/vstest-action@main | |
with: | |
testAssembly: '**\bin\Release\**\*Test.dll' | |