change to MIT license #53
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: | |
build: | |
name: Build And Test | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
# Additional fetch to get all commits and tags | |
- run: git fetch --unshallow | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Run Build and Test using Nuke | |
run: ./build.ps1 -Target Test -Configuration Release |