fix: fixed detection IsByRefLike types in reflection related to mono #21
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: dotnet_build | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
- name: Setup .NET Framework 3.5 | |
uses: crazy-max/ghaction-chocolatey@v1 | |
with: | |
args: install dotnet3.5 | |
- name: dotnet restore | |
working-directory: ./src/ | |
run: dotnet restore | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v1.0.2 | |
- name: Build with MSBuild | |
working-directory: ./src/ | |
run: msbuild -t:Pack | |
- name: Run rests | |
working-directory: ./src/GameDevWare.Dynamic.Expressions.Tests/ | |
run: dotnet test -f netcoreapp2.1 |