From a2c3b91edd01976ac9e81c5644f2d44db2e4d2f1 Mon Sep 17 00:00:00 2001 From: James Lappin Date: Fri, 17 Jan 2020 16:00:26 +0000 Subject: [PATCH] create test --- .github/workflows/test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..96c7899 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: .NET Core + +on: + pull_request: + branches: + - master + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 2.2.108 + - name: Build with dotnet + run: | + dotnet build --configuration Release + dotnet test