Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev2 #24

Merged
merged 2 commits into from
Jul 1, 2024
Merged

Dev2 #24

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
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
install:
go install github.com/osspkg/devtool@latest

.PHONY: setup
setup:
devtool setup-lib

.PHONY: lint
lint:
Expand All @@ -12,12 +15,16 @@ lint:
license:
devtool license

.PHONY: build
build:
devtool build --arch=amd64

.PHONY: tests
tests:
devtool test

.PHONY: ci
ci: install license lint tests
ci: install setup license lint build tests

.PHONY: go_work
go_work:
Expand Down
2 changes: 2 additions & 0 deletions algorithms/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ module go.osspkg.com/x/algorithms
go 1.20

replace go.osspkg.com/x/test => ./../test

require go.osspkg.com/x/test v0.5.0
10 changes: 0 additions & 10 deletions algorithms/go.sum
Original file line number Diff line number Diff line change
@@ -1,10 +0,0 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
8 changes: 4 additions & 4 deletions app/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ replace (
go.osspkg.com/x/algorithms => ../algorithms
go.osspkg.com/x/config => ../config
go.osspkg.com/x/console => ../console
go.osspkg.com/x/xc => ../xc
go.osspkg.com/x/env => ../env
go.osspkg.com/x/errors => ../errors
go.osspkg.com/x/logx => ../logx
go.osspkg.com/x/syncing => ../syncing
go.osspkg.com/x/syscall => ../syscall
go.osspkg.com/x/test => ../test
go.osspkg.com/x/xc => ../xc
)

require (
go.osspkg.com/x/algorithms v0.5.0
go.osspkg.com/x/algorithms v0.5.1
go.osspkg.com/x/config v0.5.1
go.osspkg.com/x/console v0.5.1
go.osspkg.com/x/xc v0.5.0
go.osspkg.com/x/env v0.5.0
go.osspkg.com/x/errors v0.5.0
go.osspkg.com/x/logx v0.5.2
go.osspkg.com/x/logx v0.5.3
go.osspkg.com/x/syncing v0.5.1
go.osspkg.com/x/syscall v0.5.0
go.osspkg.com/x/test v0.5.0
go.osspkg.com/x/xc v0.5.0
)

require (
Expand Down
12 changes: 6 additions & 6 deletions logx/message_easyjson.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading