feat: add ability to send metrics to generic OTLP ingest point. DRY up code to avoid duplication since a lot of it is shared. #30
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: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check: | |
name: run the tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: wrapper | |
- name: Setup and execute Gradle 'test' task | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Package | |
path: kotlin/lib/build/libs |