Bump go.opentelemetry.io/collector/pdata from 1.46.0 to 1.47.0 in /internal/signalfx-agent in the otelcol group across 1 directory #15833
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: windows-test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| GO_VERSION: 1.25.5 | |
| concurrency: | |
| group: windows-test-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| windows-test: | |
| name: windows-test | |
| runs-on: ${{ matrix.OS }} | |
| strategy: | |
| matrix: | |
| OS: [ "windows-2022", "windows-2025" ] | |
| steps: | |
| - name: Check out the codebase. | |
| uses: actions/checkout@v5 | |
| - name: Ensure required ports in the dynamic range are available | |
| run: | | |
| $ErrorActionPreference = 'Continue' | |
| & ${{ github.workspace }}\.github\workflows\scripts\win-required-ports.ps1 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| cache-dependency-path: '**/go.sum' | |
| - name: Unit tests with coverage | |
| run: | | |
| $ErrorActionPreference = 'Stop' | |
| $env:GOPATH = "${env:USERPROFILE}\go" | |
| $env:PATH = "$env:PATH;${env:GOPATH}\bin" | |
| go env -w CGO_ENABLED=0 | |
| go test -v -cover ./... |