Support correlating logs with traces with Timbre OTLP appender #111
Workflow file for this run
This file contains hidden or 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: Main tests | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| java: ['17', '18', '19'] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'corretto' | |
| java-version: ${{ matrix.java }} | |
| - uses: DeLaGuardo/[email protected] | |
| with: | |
| lein: latest | |
| - uses: actions/cache@v4 | |
| id: cache-deps | |
| with: | |
| path: ~/.m2/repository | |
| key: deps-${{ hashFiles('project.clj') }} | |
| restore-keys: deps- | |
| - run: lein test-all |