Bump com.google.guava:guava from 31.1-jre to 32.0.0-jre #38
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: Java CI 17 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- id: spotless | |
run: mvn spotless:check animal-sniffer:check test verify | |
# - if: failure() | |
# name: Test Spotless Failed | |
# run: | | |
# wget https://raw.githubusercontent.com/segmentio/circleci-notifications/master/slack-notify-branch.sh | |
# chmod u+x slack-notify-branch.sh | |
# BUILD_STATUS="Failed" NOTIFY_BRANCH="master" ./slack-notify-branch.sh | |
- if: steps.spotless.conclusion == 'success' | |
run: mvn -B package |