From 85bc24992ec612e87b8639860366d619e67a562c Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 31 Dec 2020 22:47:01 +0000 Subject: [PATCH] Create github action. --- .github/workflows/dotnet.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 000000000..c59f7a00b --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,23 @@ +name: .NET + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 3.1.301 + - name: Restore dependencies + run: dotnet restore Aaru.sln + - name: Build + run: dotnet build --no-restore Aaru.sln