File tree 5 files changed +17
-7
lines changed
5 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- go-version : ["1.18", "1.19", "1.20", "1.21.x "]
14
+ go-version : ["1.18", "1.19", "1.20", "1.21"]
15
15
16
16
steps :
17
17
- uses : actions/checkout@v4
20
20
with :
21
21
go-version : ${{ matrix.go-version }}
22
22
- name : Install dependencies
23
- run : go get .
23
+ run : find . -name go.mod -execdir go get . \;
24
24
- name : Build
25
- run : go build -v ./...
25
+ run : find . -name go.mod -execdir go build . \;
26
26
- name : Test
27
- run : go test
27
+ run : find . -name go.mod -execdir go test ./... \;
Original file line number Diff line number Diff line change 1
1
module github.com/traceloop/go-openllmetry
2
2
3
- go 1.21.4
3
+ go 1.21
Original file line number Diff line number Diff line change 1
1
dario.cat/mergo v1.0.0 /go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk =
2
2
github.com/Microsoft/go-winio v0.6.1 /go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM =
3
+ github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ =
4
+ github.com/go-logr/logr v1.4.1 /go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY =
5
+ github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag =
6
+ github.com/go-logr/stdr v1.2.2 /go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE =
3
7
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da /go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc =
4
8
github.com/google/go-cmp v0.6.0 /go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY =
5
9
github.com/klauspost/compress v1.15.15 /go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4 =
6
10
github.com/sergi/go-diff v1.1.0 /go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM =
11
+ go.opentelemetry.io/otel v1.22.0 h1:xS7Ku+7yTFvDfDraDIJVpw7XPyuHlB9MCiqqX5mcJ6Y =
12
+ go.opentelemetry.io/otel v1.22.0 /go.mod h1:eoV4iAi3Ea8LkAEI9+GFT44O6T/D0GWAVFyZVCC6pMI =
13
+ go.opentelemetry.io/otel/metric v1.22.0 h1:lypMQnGyJYeuYPhOM/bgjbFM6WE44W1/T45er4d8Hhg =
14
+ go.opentelemetry.io/otel/metric v1.22.0 /go.mod h1:evJGjVpZv0mQ5QBRJoBF64yMuOf4xCWdXjK8pzFvliY =
15
+ go.opentelemetry.io/otel/trace v1.22.0 h1:Hg6pPujv0XG9QaVbGOBVHunyuLcCC3jN7WEhPx83XD0 =
16
+ go.opentelemetry.io/otel/trace v1.22.0 /go.mod h1:RbbHXVqKES9QhzZq/fE5UnOSILqRt40a21sPw2He1xo =
7
17
golang.org/x/mod v0.12.0 /go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs =
8
18
golang.org/x/text v0.14.0 /go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU =
Original file line number Diff line number Diff line change 1
1
module github.com/traceloop/go-openllmetry/sample-app
2
2
3
- go 1.21.4
3
+ go 1.21
4
4
5
5
require github.com/sashabaranov/go-openai v1.18.1
Original file line number Diff line number Diff line change 1
1
module github.com/traceloop/go-openllmetry/traceloop-sdk
2
2
3
- go 1.21.4
3
+ go 1.21
4
4
5
5
require (
6
6
github.com/cenkalti/backoff/v4 v4.2.1
You can’t perform that action at this time.
0 commit comments