Skip to content

Add example of logging with MDC and structured logging #181 #441

Add example of logging with MDC and structured logging #181

Add example of logging with MDC and structured logging #181 #441

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: false