Test: Create a Github Action

This commit is contained in:
Tara 2019-12-20 19:01:45 -07:00 committed by GitHub
parent da91200c74
commit 0aca671b24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,17 @@
name: .NET Core
on: [push]
jobs:
build:
runs-on: windows
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.2.108
- name: Build with dotnet
run: dotnet build --configuration Release