From 531dda11a59c5fb17e965c1becde8f9ce3f2ac46 Mon Sep 17 00:00:00 2001 From: SQL-MisterMagoo Date: Tue, 17 Sep 2019 00:46:41 +0100 Subject: [PATCH] Testing out Actions --- .github/workflows/build_pr.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build_pr.yml diff --git a/.github/workflows/build_pr.yml b/.github/workflows/build_pr.yml new file mode 100644 index 0000000..eadd87c --- /dev/null +++ b/.github/workflows/build_pr.yml @@ -0,0 +1,17 @@ +name: Check PR + +on: + pull_request: + branches: + - master + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: '3.0.100-rc1-014190' # SDK Version to use. + - run: dotnet build src/BlazorEmbedLibrary/BlazorEmbedLibrary.csproj