Skip to content

fix: upgrade com.squareup.okhttp3:logging-interceptor from 5.1.0 to 5… #511

fix: upgrade com.squareup.okhttp3:logging-interceptor from 5.1.0 to 5…

fix: upgrade com.squareup.okhttp3:logging-interceptor from 5.1.0 to 5… #511

Workflow file for this run

name: Java CI with Code Coverage
on:
push:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Code Coverage
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "adopt"
- name: Build with Maven`
run: mvn clean package
- name: Run Tests with JaCoCo
run: mvn jacoco:prepare-agent jacoco:report
- name: Upload Code Coverage Report
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: target/site/jacoco