From f86d4386860de1ed7a38d2fab27c0bed3b9afce1 Mon Sep 17 00:00:00 2001 From: Huggins Mafigu Date: Fri, 2 Apr 2021 11:04:21 +0200 Subject: [PATCH] Create aspdotnetcore.yml --- .github/workflows/aspdotnetcore.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/aspdotnetcore.yml diff --git a/.github/workflows/aspdotnetcore.yml b/.github/workflows/aspdotnetcore.yml new file mode 100644 index 0000000..659168f --- /dev/null +++ b/.github/workflows/aspdotnetcore.yml @@ -0,0 +1,25 @@ +name: .NET + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 5.0.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal