Skip to content

Improve Maven example #385

Improve Maven example

Improve Maven example #385

Workflow file for this run

name: Main Build
on:
push:
paths-ignore:
- "docs/**"
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
workflow_dispatch:
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: axel-op/googlejavaformat-action@v3
with:
# This version works will all IDEs including Eclipse.
version: 1.6
skip-commit: true
# args: "--dry-run --set-exit-if-changed"
build:
runs-on: ubuntu-latest
needs: [formatting]
strategy:
matrix:
java: [11]
steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{matrix.java}}
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn clean package --file pom.xml