Skip to content

Commit

Permalink
Update maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasrosdal authored Feb 19, 2024
1 parent c5db371 commit 0a47fdf
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,33 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven


name: libre-wsdl4j maven build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17, 21 ]
# The last 3 LTS releases
# Java 17 is run in codacy-coverage-reporter
java: [ 11, 17, 21 ]
name: Java ${{matrix.java}}
steps:
- uses: actions/[email protected]
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{matrix.java}}
- name: Build with Maven
run: mvn -B -V clean verify --file pom.xml --no-transfer-progress -Dgpg.skip

0 comments on commit 0a47fdf

Please sign in to comment.