Bump org.apache.maven.plugin-tools:maven-plugin-annotations from 3.14.0 to 3.15.0 #117
Workflow file for this run
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: PR builder is just a magic | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get all the letters, words and paragraphs needed for the spell! | |
uses: actions/checkout@v4 | |
- name: Prepare the cauldron and the wand! | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Maven, now you do the magic! I enchant you the Bash way! | |
run: | | |
mvn --batch-mode --update-snapshots install | |
mvn --batch-mode -Prun-its verify -DskipTests |