From ceb0349c8a5aac8380b7bf7c9b57909e3d8a6506 Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 24 Jan 2020 15:31:05 +0100 Subject: [PATCH] - add ci workflow action --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..926aeb7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI + +on: [push] + +jobs: + build: + name: Build + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Build + run: dotnet build + + test: + name: Test + needs: build + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Run tests + run: dotnet test +