Skip to content

Bump ch.qos.logback:logback-classic from 1.2.6 to 1.3.12 #143

Bump ch.qos.logback:logback-classic from 1.2.6 to 1.3.12

Bump ch.qos.logback:logback-classic from 1.2.6 to 1.3.12 #143

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: 'Maven Build'
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
env:
MAVEN_ARGS: -B -ntp -Prelease -Pcoverage -Dmaven.javadoc.skip=true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build Maven
run: mvn ${MAVEN_ARGS} compile
- name: Maven Test
run: mvn ${MAVEN_ARGS} test
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Code quality
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn ${MAVEN_ARGS} -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=yyvess-github jacoco:report sonar:sonar