Skip to content

Commit

Permalink
Update maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
danieskj authored Feb 18, 2026
1 parent 8c3e1f5 commit c9029c9
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,19 @@ on:
jobs:
build:
runs-on: self-hosted

steps:
- uses: actions/checkout@v4
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'temurin'
cache: 'maven'

- name: Build with Maven
run: mvn clean compile --pom.xml
run: mvn -B compile --file pom.xml

- name: Test with Maven
run: mvn clean test --pom.xml
run: mvn -B test --file pom.xml

0 comments on commit c9029c9

Please sign in to comment.