Bump tomcat.version from 11.0.2 to 11.0.4 #148
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: | |
- master | |
jobs: | |
build: | |
# using ubicloud instead of "standard" ubuntu-latest fixes issue with members not being able to connect via multicast | |
runs-on: ubicloud-standard-8 | |
steps: | |
- name: Get all the letters, words and paragraphs needed for the spell! | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: ./.github/actions/setup-jdk | |
- name: Build | |
run: | | |
mvn clean install -DskipTests -B -P checkstyle -U | |
- name: Findbugs | |
run: | | |
mvn compile -Pfindbugs -B | |
- name: Verify | |
run: | | |
mvn verify -B -Dmaven.test.failure.ignore=false | |
- name: Publish Test results | |
uses: EnricoMi/publish-unit-test-result-action@567cc7f8dcea3eba5da355f6ebc95663310d8a07 | |
if: ${{ !cancelled() }} | |
with: | |
files: "**/TEST-*.xml" | |
large_files: true |