From 6095753c0c8e20e4c61d52a7bf852727c7a849bf Mon Sep 17 00:00:00 2001 From: Robert McNees <86265089+robertmcnees@users.noreply.github.com> Date: Fri, 7 Jun 2024 08:20:09 -0400 Subject: [PATCH] Create continuous-integration-build.yml --- .../continuous-integration-build.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/continuous-integration-build.yml diff --git a/.github/workflows/continuous-integration-build.yml b/.github/workflows/continuous-integration-build.yml new file mode 100644 index 0000000..7d6f298 --- /dev/null +++ b/.github/workflows/continuous-integration-build.yml @@ -0,0 +1,22 @@ +name: CI Build +on: + workflow_call: + +jobs: + build: + name: Build Main Branch + runs-on: ubuntu-latest + + steps: + - name: Checkout source code + uses: actions/checkout@v4 + + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: maven + + - name: Build Initial with Maven + run: ./mvnw --batch-mode clean package