From 4c0e57bb853ef96406ea9a3ace61640be691ed4d Mon Sep 17 00:00:00 2001 From: Michael Gordeev Date: Tue, 19 Nov 2019 00:50:36 +0300 Subject: [PATCH] Added .NET CI config --- .github/workflows/dotnet.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..47cfe90 --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,17 @@ +name: .NET + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 2.2.108 + - name: Build with dotnet + run: dotnet build --configuration Release