Remove usage of deprecated TraceServiceStub methods #544
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: "Pull Request Build" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
strategy: | |
matrix: | |
java-version: [11] | |
build-root: [".", "examples/instrumentation-quickstart"] | |
include: | |
- build-root: . | |
name: root | |
name: Test (${{matrix.name || matrix.build-root}}, java-${{matrix.java-version}}) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- id: setup-java | |
name: Setup Java ${{matrix.java-version}} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{matrix.java-version}} | |
- uses: burrunan/[email protected] | |
with: | |
job-id: java-${{matrix.java-version}} | |
remote-build-cache-proxy-enabled: false | |
build-root-directory: ${{matrix.build-root}} | |
arguments: test | |
style: | |
name: Stylecheck (${{matrix.name || matrix.build-root}}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [11] | |
build-root: [".", "examples/instrumentation-quickstart"] | |
include: | |
- build-root: . | |
name: root | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- id: setup-java | |
name: Setup Java ${{matrix.java-version}} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{matrix.java-version}} | |
- uses: burrunan/[email protected] | |
with: | |
job-id: java-${{matrix.java-version}} | |
remote-build-cache-proxy-enabled: false | |
build-root-directory: ${{matrix.build-root}} | |
arguments: spotlessCheck |