chore(deps): update dependency opentelemetry-java-instrumentation to v2.11.0 #362
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: Acceptance Tests | |
on: [pull_request] | |
jobs: | |
acceptance-tests: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
- name: Check out oats | |
uses: actions/checkout@v4 | |
with: | |
repository: grafana/oats | |
ref: v0.1.0 | |
path: oats | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
cache-dependency-path: oats/go.sum | |
- name: Build Image for integration tests | |
working-directory: ./main | |
run: ./build-lgtm.sh | |
- name: Run acceptance tests | |
working-directory: ./main | |
run: ./scripts/run-acceptance-tests.sh | |
- name: upload log file | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: OATS logs | |
path: oats/yaml/build/**/*.log |