Update otel handling for SDP (#3717) #3120
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: Run Tests | |
| on: push | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: depot-ubuntu-24.04-4 | |
| concurrency: | |
| group: cli-tests-${{ github.ref }} | |
| cancel-in-progress: true # we only need test results from the latest commit | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.x | |
| check-latest: true | |
| cache: true | |
| - name: Go Test | |
| run: | | |
| go run main.go --version | |
| # Only run the tests that are relevant to the release. All other tests have already run internally. | |
| go test -race -v -timeout 5m github.com/overmindtech/cli github.com/overmindtech/cli/tfutils |