fix: OTel incorrect usage of attributes.Value.AsString resulting in an empty string for non-string values #825
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: Test | |
on: | |
push: | |
branches: | |
- master | |
- release/** | |
pull_request: | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Module Mode | |
runs-on: ${{ matrix.os }}-latest | |
env: | |
GO111MODULE: "on" | |
GOFLAGS: "-mod=readonly" | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v2 | |
with: | |
# In order: | |
# * Module download cache | |
# * Build cache (Linux) | |
# * Build cache (Mac) | |
# * Build cache (Windows) | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
~/Library/Caches/go-build | |
%LocalAppData%\go-build | |
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ matrix.go }}- | |
${{ runner.os }}-go- | |
- name: Build | |
run: make build | |
- name: Vet | |
run: make vet | |
- name: Check go.mod Tidiness | |
run: make mod-tidy | |
if: ${{ matrix.go == '1.20' }} | |
- name: Test | |
run: make test | |
- name: Test (with race detection) | |
run: make test-race | |
# The race detector adds considerable runtime overhead. To save time on | |
# pull requests, only run this step for a single job in the matrix. For | |
# all other workflow triggers (e.g., pushes to a release branch) run | |
# this step for the whole matrix. | |
if: ${{ github.event_name != 'pull_request' || (matrix.go == '1.20' && matrix.os == 'ubuntu') }} | |
- name: Collect coverage | |
run: make test-coverage | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: .coverage | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
go: ["1.20", "1.19", "1.18"] | |
os: [ubuntu, windows, macos] | |
fail-fast: false |