Skip to content

Commit

Permalink
Add tools.go
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-congo committed Feb 8, 2024
1 parent d727713 commit 76480fd
Show file tree
Hide file tree
Showing 4 changed files with 738 additions and 10 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ jobs:

- name: Install client dependencies
working-directory: ./go/glide
run: |
go get .
run: go install

- name: Generate the Go protobuf files
run: |
Expand All @@ -102,7 +101,7 @@ jobs:

- name: Run staticcheck
working-directory: ./go/glide
run: go vet .
run: go staticcheck .

- name: Run unit tests
working-directory: ./go/glide
Expand Down
16 changes: 9 additions & 7 deletions go/glide/go.mod
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
module github.com/aws/glide-for-redis/go/glide

go 1.21.6
go 1.21

require (
github.com/vakenbolt/go-test-report v0.9.3
google.golang.org/protobuf v1.32.0
honnef.co/go/tools v0.4.6
)

require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/cobra v1.8.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/cobra v1.1.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vakenbolt/go-test-report v0.9.3 // indirect
golang.org/x/exp/typeparams v0.0.0-20221208152030-732eee02a75a // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/tools v0.12.1-0.20230825192346-2191a27a6dc5 // indirect
google.golang.org/protobuf v1.32.0 // indirect
honnef.co/go/tools v0.4.6 // indirect
)
Loading

0 comments on commit 76480fd

Please sign in to comment.