build(deps): bump ch.qos.logback:logback-classic from 1.2.11 to 1.5.8 #86
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 |