Skip to content

Update Readme.md

Update Readme.md #22

Workflow file for this run

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