mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-11-24 08:47:01 +08:00
actions build and test v001
This commit is contained in:
20
.github/workflows/build_and_test.yml
vendored
Normal file
20
.github/workflows/build_and_test.yml
vendored
Normal 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
|
||||
Reference in New Issue
Block a user