From 708e419ef061be749183450cd20a182f30603315 Mon Sep 17 00:00:00 2001 From: Ieuan Walker Date: Sun, 19 Jul 2020 03:02:46 +0100 Subject: [PATCH] Created ci GitHub action --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..dcbd186 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: .NET Core + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 3.1.101 + - name: Install dependencies + run: dotnet restore + - name: Build + run: dotnet build Breadcrumb/Breadcrumb.csproj --configuration Release --no-restore