Skip to content

feat: allow access to context in SpanName function (#67) #106

feat: allow access to context in SpanName function (#67)

feat: allow access to context in SpanName function (#67) #106

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- "1.22"
- "1.23"
- "1.24"
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go mod tidy -diff
- name: Run tests
run: make test