Skip to content

Commit

Permalink
add mvn build to github CI-action
Browse files Browse the repository at this point in the history
  • Loading branch information
svene committed May 24, 2024
1 parent 5f32c25 commit a1a1e36
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,11 @@ jobs:
- run: npm ci
- run: npm run build --if-present
- run: npm test --if-present
- name: Build
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B clean verify

0 comments on commit a1a1e36

Please sign in to comment.