这是indexloc提供的服务,不要输入任何密码
Skip to content

feat: propagate context to adapters on WithContext #1206

feat: propagate context to adapters on WithContext

feat: propagate context to adapters on WithContext #1206

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [main]
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.23, 1.24]
name: Build & Test
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.1.6
- run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}