Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
submodules: recursive
- uses: actions/setup-go@v4
with:
go-version: "1.25"
go-version: "1.23"
- name: Lint
uses: golangci/golangci-lint-action@v8
with:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/nexus-rpc/sdk-go

go 1.25
go 1.23

require github.com/stretchr/testify v1.8.4

Expand Down
4 changes: 2 additions & 2 deletions nexus/operation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func startOperation(
options StartOperationOptions,
) (HandlerStartOperationResult[any], error) {
t.Helper()
ctx := WithHandlerContext(t.Context(), HandlerInfo{
ctx := WithHandlerContext(context.Background(), HandlerInfo{
Service: svc.Name,
Operation: op.Name(),
Header: options.Header,
Expand All @@ -96,7 +96,7 @@ func cancelOperation(
options CancelOperationOptions,
) error {
t.Helper()
ctx := WithHandlerContext(t.Context(), HandlerInfo{
ctx := WithHandlerContext(context.Background(), HandlerInfo{
Service: svc.Name,
Operation: op.Name(),
Header: options.Header,
Expand Down