From b711fc55915ba0950b32d7871c7d50c46affdc7e Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Wed, 12 May 2021 17:49:20 -0700 Subject: [PATCH] Add build Action (#253) * Add build Action * Update build.yml --- .github/workflows/build.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..d344662 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,30 @@ +name: .NET + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Checkout submodules + run: | + git submodule sync + git submodule update --init --recursive + - 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