Bump go.opentelemetry.io/otel/sdk from 1.34.0 to 1.43.0 in /extensibility #44
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: Build extensibility examples | |
| on: | |
| pull_request: | |
| paths: | |
| - 'extensibility/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| extensibility-test: | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Print build information | |
| env: | |
| HEAD_REF: ${{ github.head_ref }} | |
| REF: ${{ github.ref }} | |
| OS: ${{ matrix.os }} | |
| run: echo "head_ref=$HEAD_REF ref=$REF os=$OS" | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: extensibility/go.mod | |
| - name: build and test | |
| working-directory: extensibility | |
| run: go test -count=1 -timeout 120s ./... |