Skip to content

Bump com.spotify.fmt:fmt-maven-plugin from 2.19 to 2.23 #39

Bump com.spotify.fmt:fmt-maven-plugin from 2.19 to 2.23

Bump com.spotify.fmt:fmt-maven-plugin from 2.19 to 2.23 #39

Workflow file for this run

# 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: LGS CI Feature Branches
on:
push:
branches:
- 'feature/**'
- 'bugfix/**'
- 'hotfix/**'
- 'dependabot/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- uses: s4u/[email protected]
with:
servers: |
[{
"id": "github-lgs-pdp",
"username": "${{ secrets.GH_PACKAGE_USER }}",
"password": "${{ secrets.GH_PACKAGE_TOKEN }}"
}]
- name: Maven verify
run: mvn -B verify -Dmaven.test.skip
- name: Maven run tests
run: mvn -B test
- name: Maven build package
run: mvn -B package -Dmaven.test.skip