build(deps): bump ch.qos.logback:logback-classic from 1.2.11 to 1.3.12 #116
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: ci-build | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
if: "startsWith(github.event.head_commit.message, 'release: Releasing version') != true" | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
name: build-and-testing | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install-java11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: temurin | |
cache: maven | |
- name: Build & Verify Project | |
run: ./mvnw verify | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v3 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: '**/target/surefire-reports/TEST-*.xml' | |
# - name: Add coverage to PR | |
# id: jacoco | |
# uses: madrapps/jacoco-report@v1.3 | |
# with: | |
# paths: ${{ github.workspace }}/spring-configuration-property-documenter-report/target/site/jacoco-aggregate/jacoco.xml | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# min-coverage-overall: 40 | |
# min-coverage-changed-files: 60 | |
# debug-mode: false | |
# - name: install-java17 | |
# uses: actions/setup-java@v2 | |
# with: | |
# java-version: 17 | |
# distribution: temurin | |
# cache: maven | |
# - name: Build & Verify Samples | |
# run: ./mvnw clean verify -f samples/pom.xml | |