Skip to content

Commit e9ee8eb

Browse files
author
lmvysakh
committed
Updated workflow
1 parent 6a00033 commit e9ee8eb

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.github/workflows/hugecachedpendencyv5.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
go.uber.org/zap v1.24.0
4141
github.com/prometheus/client_golang v1.16.0
4242
github.com/gin-gonic/gin v1.9.0
43+
github.com/go-redis/redis/v8 v8.11.5
44+
github.com/gorilla/websocket v1.5.0
45+
github.com/sirupsen/logrus v1.9.3
46+
github.com/spf13/cobra v1.8.0
47+
github.com/spf13/viper v1.18.2
4348
)
4449
EOF
4550
@@ -61,6 +66,11 @@ jobs:
6166
_ "go.uber.org/zap"
6267
_ "github.com/prometheus/client_golang/prometheus"
6368
_ "github.com/gin-gonic/gin"
69+
_ "github.com/go-redis/redis/v8"
70+
_ "github.com/gorilla/websocket"
71+
_ "github.com/sirupsen/logrus"
72+
_ "github.com/spf13/cobra"
73+
_ "github.com/spf13/viper"
6474
)
6575
func main() {}
6676
EOF
@@ -110,6 +120,11 @@ jobs:
110120
go.uber.org/zap v1.24.0
111121
github.com/prometheus/client_golang v1.16.0
112122
github.com/gin-gonic/gin v1.9.0
123+
github.com/go-redis/redis/v8 v8.11.5
124+
github.com/gorilla/websocket v1.5.0
125+
github.com/sirupsen/logrus v1.9.3
126+
github.com/spf13/cobra v1.8.0
127+
github.com/spf13/viper v1.18.2
113128
)
114129
115130
EOF
@@ -132,6 +147,11 @@ jobs:
132147
_ "go.uber.org/zap"
133148
_ "github.com/prometheus/client_golang/prometheus"
134149
_ "github.com/gin-gonic/gin"
150+
_ "github.com/go-redis/redis/v8"
151+
_ "github.com/gorilla/websocket"
152+
_ "github.com/sirupsen/logrus"
153+
_ "github.com/spf13/cobra"
154+
_ "github.com/spf13/viper"
135155
)
136156
func main() {}
137157
EOF
@@ -181,6 +201,11 @@ jobs:
181201
go.uber.org/zap v1.24.0
182202
github.com/prometheus/client_golang v1.16.0
183203
github.com/gin-gonic/gin v1.9.0
204+
github.com/go-redis/redis/v8 v8.11.5
205+
github.com/gorilla/websocket v1.5.0
206+
github.com/sirupsen/logrus v1.9.3
207+
github.com/spf13/cobra v1.8.0
208+
github.com/spf13/viper v1.18.2
184209
)
185210
186211
"@
@@ -204,6 +229,11 @@ jobs:
204229
_ "go.uber.org/zap"
205230
_ "github.com/prometheus/client_golang/prometheus"
206231
_ "github.com/gin-gonic/gin"
232+
_ "github.com/go-redis/redis/v8"
233+
_ "github.com/gorilla/websocket"
234+
_ "github.com/sirupsen/logrus"
235+
_ "github.com/spf13/cobra"
236+
_ "github.com/spf13/viper"
207237
)
208238
func main() {}
209239
"@

bigcachetest/dummy.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,10 @@ import (
1313
_ "go.uber.org/zap"
1414
_ "github.com/prometheus/client_golang/prometheus"
1515
_ "github.com/gin-gonic/gin"
16+
_ "github.com/go-redis/redis/v8"
17+
_ "github.com/gorilla/websocket"
18+
_ "github.com/sirupsen/logrus"
19+
_ "github.com/spf13/cobra"
20+
_ "github.com/spf13/viper"
1621
)
1722
func main() {}

bigcachetest/go.mod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,10 @@ require (
1313
go.uber.org/zap v1.24.0
1414
github.com/prometheus/client_golang v1.16.0
1515
github.com/gin-gonic/gin v1.9.0
16+
github.com/go-redis/redis/v8 v8.11.5
17+
github.com/gorilla/websocket v1.5.0
18+
github.com/sirupsen/logrus v1.9.3
19+
github.com/spf13/cobra v1.8.0
20+
github.com/spf13/viper v1.18.2
1621
)
1722

0 commit comments

Comments
 (0)