Skip to content

Commit f0048f3

Browse files
authored
Merge pull request #24 from osspkg/dev2
Dev2
2 parents a1ec261 + db2a1a4 commit f0048f3

File tree

5 files changed

+18
-19
lines changed

5 files changed

+18
-19
lines changed

Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
install:
44
go install github.com/osspkg/devtool@latest
55

6+
.PHONY: setup
7+
setup:
8+
devtool setup-lib
69

710
.PHONY: lint
811
lint:
@@ -12,12 +15,16 @@ lint:
1215
license:
1316
devtool license
1417

18+
.PHONY: build
19+
build:
20+
devtool build --arch=amd64
21+
1522
.PHONY: tests
1623
tests:
1724
devtool test
1825

1926
.PHONY: ci
20-
ci: install license lint tests
27+
ci: install setup license lint build tests
2128

2229
.PHONY: go_work
2330
go_work:

algorithms/go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ module go.osspkg.com/x/algorithms
33
go 1.20
44

55
replace go.osspkg.com/x/test => ./../test
6+
7+
require go.osspkg.com/x/test v0.5.0

algorithms/go.sum

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
2-
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4-
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
5-
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
6-
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
7-
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
8-
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
9-
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
10-
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

app/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ replace (
1616
)
1717

1818
require (
19-
go.osspkg.com/x/algorithms v0.5.0
19+
go.osspkg.com/x/algorithms v0.5.1
2020
go.osspkg.com/x/config v0.5.1
2121
go.osspkg.com/x/console v0.5.1
2222
go.osspkg.com/x/env v0.5.0
2323
go.osspkg.com/x/errors v0.5.0
24-
go.osspkg.com/x/logx v0.5.2
24+
go.osspkg.com/x/logx v0.5.3
2525
go.osspkg.com/x/syncing v0.5.1
2626
go.osspkg.com/x/syscall v0.5.0
2727
go.osspkg.com/x/test v0.5.0

logx/message_easyjson.go

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)