Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Trace context propagation to peers and tracing improvements #79

Trace context propagation to peers and tracing improvements

Trace context propagation to peers and tracing improvements #79

name: On Pull Request
on:
pull_request:
branches: [ master, main ]
jobs:
test:
name: test
strategy:
matrix:
go-version:
- 1.19.x
- 1.20.x
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Fetch git tags
run: git fetch --tags
- name: Version consistency check
run: ./check-version.sh
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- run: go env
- name: Cache deps
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install deps
run: go mod download
- name: Test
run: go test -v -race -p=1 -count=1