chore(deps): update dependency com.diffplug.spotless:spotless-maven-p… #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: boot-rabbitmq-thymeleaf CI | |
on: | |
push: | |
paths: | |
- "boot-rabbitmq-thymeleaf/**" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "boot-rabbitmq-thymeleaf/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '17' ] | |
defaults: | |
run: | |
working-directory: "boot-rabbitmq-thymeleaf" | |
name: Build on Java ${{ matrix.Java }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: Build with Maven and analyze | |
run: ./mvnw -B clean verify package --file pom.xml | |