From cf8ce3939c183762f5bf73656de34e388db47708 Mon Sep 17 00:00:00 2001 From: irongut Date: Wed, 14 Apr 2021 03:53:18 +0100 Subject: [PATCH] initial CI build pipeline --- .github/workflows/ci-build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci-build.yml diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml new file mode 100644 index 0000000..35fb100 --- /dev/null +++ b/.github/workflows/ci-build.yml @@ -0,0 +1,23 @@ +name: CI Build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + name: CI Build + steps: + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 5.0.x + - name: Restore Dependencies + run: dotnet restore src/CodeCoverageSummary.sln + - name: Build CodeCoverageSummary + run: dotnet build src/CodeCoverageSummary.sln --configuration Release --no-restore +