From 78e66ee4dc068054a7c3131ef6a4a177d12d0c2a Mon Sep 17 00:00:00 2001 From: Alex Hyett Date: Fri, 21 May 2021 14:45:09 +0100 Subject: [PATCH] Add github workflow --- .github/workflows/build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..97d59da --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +name: Build and Test + +on: + push: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Build and Test + run: dotnet test