From 48c0cf331976603759c0b4fafd8ce5e041ae3a77 Mon Sep 17 00:00:00 2001 From: Carlos Campos <111520257+CarlosMiguelAzevedoCampos@users.noreply.github.com> Date: Wed, 31 Aug 2022 11:00:23 +0100 Subject: [PATCH] Create build_master.yml This action will build the API code everytime a commit to master is made. --- .github/workflows/build_master.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build_master.yml diff --git a/.github/workflows/build_master.yml b/.github/workflows/build_master.yml new file mode 100644 index 0000000..9eb1c84 --- /dev/null +++ b/.github/workflows/build_master.yml @@ -0,0 +1,19 @@ +name: "Build Master Branch" + +on: + push: + branches: + - "master" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + + - name: Build + run: dotnet build --configuration Release