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