File tree Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 1
- # Variables
2
- PACKAGES := $(shell go list ./...)
3
-
4
1
.PHONY : all
5
2
all : help
6
3
@@ -16,7 +13,7 @@ help: Makefile
16
13
# # test: Run tests with race detection and coverage
17
14
.PHONY : test
18
15
test : go-generate
19
- go test -race -cover $( PACKAGES )
16
+ go test -race -cover ./...
20
17
21
18
# # bench: Run performance benchmarks and create reports
22
19
.PHONY : bench
@@ -26,7 +23,7 @@ bench: go-generate
26
23
# # bench-quick: Run benchmarks without creating reports
27
24
.PHONY : bench-quick
28
25
bench-quick : go-generate
29
- go test -run=^$$ -bench=. -benchmem $( PACKAGES )
26
+ go test -run=^$$ -bench=. -benchmem ./...
30
27
31
28
# # lint: Run golangci-lint code quality checks
32
29
.PHONY : lint
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ require (
19
19
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
20
20
github.com/stretchr/objx v0.5.2 // indirect
21
21
github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834 // indirect
22
- go.opentelemetry.io/proto/otlp v1.5 .0 // indirect
23
- golang.org/x/sys v0.32 .0 // indirect
22
+ go.opentelemetry.io/proto/otlp v1.7 .0 // indirect
23
+ golang.org/x/sys v0.33 .0 // indirect
24
24
google.golang.org/protobuf v1.36.6 // indirect
25
25
gopkg.in/yaml.v3 v3.0.1 // indirect
26
26
)
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834 h1:ZF+QBjOI+tILZ
29
29
github.com/tetratelabs/wabin v0.0.0-20230304001439-f6f874872834 /go.mod h1:m9ymHTgNSEjuxvw8E7WWe4Pl4hZQHXONY8wE6dMLaRk =
30
30
github.com/tetratelabs/wazero v1.9.0 h1:IcZ56OuxrtaEz8UYNRHBrUa9bYeX9oVY93KspZZBf/I =
31
31
github.com/tetratelabs/wazero v1.9.0 /go.mod h1:TSbcXCfFP0L2FGkRPxHphadXPjo1T6W+CseNNY7EkjM =
32
- go.opentelemetry.io/proto/otlp v1.5 .0 h1:xJvq7gMzB31/d406fB8U5CBdyQGw4P399D1aQWU/3i4 =
33
- go.opentelemetry.io/proto/otlp v1.5 .0 /go.mod h1:keN8WnHxOy8PG0rQZjJJ5A2ebUoafqWp0eVQ4yIXvJ4 =
32
+ go.opentelemetry.io/proto/otlp v1.7 .0 h1:jX1VolD6nHuFzOYso2E73H85i92Mv8JQYk0K9vz09os =
33
+ go.opentelemetry.io/proto/otlp v1.7 .0 /go.mod h1:fSKjH6YJ7HDlwzltzyMj036AJ3ejJLCgCSHGj4efDDo =
34
34
go.starlark.net v0.0.0-20250603171236-27fdb1d4744d h1:FubZUgwT1cKKeI+fybmPehRDxqv/SurjGzaCXv5IeLs =
35
35
go.starlark.net v0.0.0-20250603171236-27fdb1d4744d /go.mod h1:YKMCv9b1WrfWmeqdV5MAuEHWsu5iC+fe6kYl2sQjdI8 =
36
- golang.org/x/sys v0.32 .0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20 =
37
- golang.org/x/sys v0.32 .0 /go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k =
36
+ golang.org/x/sys v0.33 .0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw =
37
+ golang.org/x/sys v0.33 .0 /go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k =
38
38
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE =
39
39
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
40
40
google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY =
You can’t perform that action at this time.
0 commit comments