build(deps): bump com.google.guava:guava from 31.1-jre to 33.3.0-jre #81
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
# For more information see: https://docs.github.com/en/actions/ | |
name: Project CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: ['8'] | |
name: Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v3 | |
# Setup Java | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '${{ matrix.java }}' | |
distribution: 'temurin' | |
cache: maven | |
- name: Check license hearders | |
run: ./mvnw license:check | |
- name: Check NOTICE | |
run: ./mvnw -B notice:check | |
- name: Build backend | |
run: ./mvnw -B package --file pom.xml -Dmaven.test.skip=true -Darguments="-DskipTests" | |
# - name: Tests backend | |
# run: ./mvnw -B test --file pom.xml |