actions build and test v001

This commit is contained in:
Eliot Jones
2021-02-28 15:56:30 -04:00
parent b930924b9b
commit 50037cdef8

20
.github/workflows/build_and_test.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Build and test
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@master
- name: Set up dotnet core
uses: actions/setup-dotnet@v1
with:
dotnet-version: "2.1.x"
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
# Build the release build
- run: dotnet build -c Release src/UglyToad.PdfPig.sln