Skip to content

Commit

Permalink
[GHA] Update github actions
Browse files Browse the repository at this point in the history
- Allow any branch, we are not the github police
- Allow jdk 21
- Use built in caching
- Use maven wrapper
  • Loading branch information
hazendaz committed Apr 5, 2024
1 parent e5e2df2 commit 06ae1dc
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,28 @@

name: mvn verify

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
on: [push, pull_request, workflow_dispatch]

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
java: [17]
java: [17, 21]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: zulu
- name: Cache local maven repository
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ matrix.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ matrix.os }}-m2
distribution: temurin
cache: 'maven'
- name: Download Maven Wrapper
run: mvn wrapper:wrapper "-Dmaven=3.9.6"
- name: Build with Maven
run: mvn -B -V -e "-Dstyle.color=always" verify -DskipFormat -DverifyFormat
run: ./mvnw -B -V -e "-Dstyle.color=always" verify -DskipFormat -DverifyFormat
env:
MAVEN_OPTS: -Djansi.force=true

0 comments on commit 06ae1dc

Please sign in to comment.