Bump ch.qos.logback:logback-classic from 1.2.10 to 1.2.13 #115
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: Java CI | |
on: | |
push: | |
branches: '*' | |
paths-ignore: | |
- '**.md' | |
- '**.txt' | |
- '**.gitignore' | |
- '**.gif' | |
- '**.png' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build test with coverage | |
run: mvn --batch-mode --update-snapshots clean test -Djacoco.skip=false | |
- name: Upload coverage to Codacy | |
shell: bash | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
run: | | |
echo "Argblarb line 1" | |
echo "Argblarb $GITHUB_SHA" | |
echo "Argblarb line 3" | |
bash <(curl -Ls https://coverage.codacy.com/get.sh) report -l Java --force-coverage-parser jacoco --commit-uuid $GITHUB_SHA --project-token $CODACY_PROJECT_TOKEN $(find -name 'jacoco*.xml' -printf '-r %p ') |