Skip to content

Commit

Permalink
Build pipeline for Java SDK (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: Félix P. <[email protected]>
  • Loading branch information
kb-kerem and FriggaHel authored Apr 12, 2024
1 parent 7110035 commit 38e5254
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/java-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Java (build)

on:
push:
paths:
- 'visual-java/**'
- .github/workflows/java-build.yml
pull_request:
paths:
- 'visual-java/**'
- .github/workflows/java-build.yml

defaults:
run:
working-directory: visual-java

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit 38e5254

Please sign in to comment.