From 2f0beed9b8319ac441d909479bf0f4e1521f9895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=82=BA=E4=BB=80=E9=BA=BC?= Date: Sat, 4 Jul 2020 18:27:45 +0900 Subject: [PATCH] Create dotnet-core.yml --- .github/workflows/dotnet-core.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/dotnet-core.yml diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml new file mode 100644 index 000000000..b9a85c3c9 --- /dev/null +++ b/.github/workflows/dotnet-core.yml @@ -0,0 +1,22 @@ +name: .NET Core + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + name: Build and Test + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Install dependencies + run: dotnet restore + - name: Build with .NET + run: dotnet build --no-restore --configuration Release + - name: Unit Tests + run: dotnet test --no-build --no-restore --configuration Release