Skip to content

Commit

Permalink
Create continuous-integration-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmcnees authored Jun 7, 2024
1 parent f16f146 commit 6095753
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/continuous-integration-build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6095753

Please sign in to comment.