From f91f7f3174a96eeb086f897302e8c536608cfd5a Mon Sep 17 00:00:00 2001 From: Nino Martinez Wael Date: Fri, 1 Dec 2023 04:54:03 +0100 Subject: [PATCH] added github workflow Signed-off-by: Nino Martinez Wael --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..9ee795d5 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build +on: + pull_request: + branches: + - 'releases/**' + - master + workflow_dispatch: +jobs: + QVS: + permissions: + contents: read + runs-on: ubuntu-20.04 + steps: + - name: Checkout Source + uses: actions/checkout@v4 + - name: Build qvs + run: "./QuoteVerification/QuoteVerificationService/build.sh"