Remove EnumGetValues #398
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, pull_request] | |
jobs: | |
Everything: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.401' | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1.0.5 | |
- name: Setup MSBuild Path | |
uses: microsoft/setup-msbuild@v1.0.2 | |
- name: Restore NuGet Packages | |
run: nuget restore CSharpMath.sln | |
- name: Build Everything | |
run: msbuild CSharpMath.sln /p:Configuration=Release |