Skip to content

Commit

Permalink
Retrieving back the separate build process
Browse files Browse the repository at this point in the history
  • Loading branch information
shaiksphere committed Oct 10, 2023
1 parent 1b4ff37 commit c7e3044
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Build"

on: [push]

jobs:
build:
name: 'Build'

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '20'
distribution: 'temurin'
cache: maven

- name: Build with Maven
run: mvn clean package

0 comments on commit c7e3044

Please sign in to comment.