Skip to content

Commit

Permalink
Merge pull request #1 from TimVinkemeier/feature/pr-builds
Browse files Browse the repository at this point in the history
Create pr-build.yml
  • Loading branch information
TimVinkemeier committed Sep 6, 2020
2 parents 13472d5 + acdcbd9 commit 2bbc6df
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: PR Validation Build

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100-preview.8.20417.9
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build .\TimVinkemeier.AzureDevOpsToolkit\TimVinkemeier.AzureDevOpsToolkit.csproj --configuration Release --no-restore
- name: Test
continue-on-error: true
run: dotnet test --no-restore --verbosity normal

0 comments on commit 2bbc6df

Please sign in to comment.