From 1e52f69a428fd5895e6135de80dea26b6094d96a Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Mon, 27 Apr 2020 14:05:48 +0200 Subject: [PATCH] Github Actions workflow to build the samples --- .github/workflows/build-samples.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build-samples.yml diff --git a/.github/workflows/build-samples.yml b/.github/workflows/build-samples.yml new file mode 100644 index 0000000000..3b134658e0 --- /dev/null +++ b/.github/workflows/build-samples.yml @@ -0,0 +1,18 @@ +name: Build Samples + +on: push + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup .NET Core SDK + uses: actions/setup-dotnet@v1.4.0 + + - name: Build samples + working-directory: samples/core + run: dotnet build