Update README with end-of-support timeline and add migration links (#… #1053
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
go: | |
- '1.23' | |
- '1.24' | |
- '1' | |
steps: | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v1 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
path: src/github.com/aws/aws-xray-sdk-go | |
- name: Test | |
run: make test-with-race | |
shell: bash | |
working-directory: src/github.com/aws/aws-xray-sdk-go | |
benchmark: | |
name: XRay-Go-SDK-Benchmarking | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
go: | |
- '1.24' | |
steps: | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v1 | |
with: | |
go-version: ${{ matrix.go }} | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
path: src/github.com/aws/aws-xray-sdk-go | |
- name: Benchmark | |
run: go test -v -benchmem -run=^$$ -bench=. ./... | tee benchmark/output.txt | |
shell: bash | |
working-directory: src/github.com/aws/aws-xray-sdk-go |