Skip to content

Commit

Permalink
Merge pull request #24 from osspkg/dev2
Browse files Browse the repository at this point in the history
Dev2
  • Loading branch information
markus621 committed Jul 1, 2024
2 parents a1ec261 + db2a1a4 commit f0048f3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 19 deletions.
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=
4 changes: 2 additions & 2 deletions app/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ replace (
)

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/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
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.

0 comments on commit f0048f3

Please sign in to comment.