This repository was archived by the owner on May 17, 2025. It is now read-only.
Merge pull request #48 from jim-lightfoot/archive #94
This file contains hidden or 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: .NET Core | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '3.1.100' # SDK Version to use. | |
- name: Build with dotnet | |
run: dotnet build --configuration Release |