mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-30 11:26:15 -06:00
Bumps [github.com/uptrace/bun/extra/bunotel](https://github.com/uptrace/bun) from 1.2.1 to 1.2.5. - [Release notes](https://github.com/uptrace/bun/releases) - [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md) - [Commits](https://github.com/uptrace/bun/compare/v1.2.1...v1.2.5) --- updated-dependencies: - dependency-name: github.com/uptrace/bun/extra/bunotel dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
749 B
Makefile
29 lines
749 B
Makefile
ALL_GO_MOD_DIRS := $(shell find . -type f -name 'go.mod' -exec dirname {} \; | sort)
|
|
EXAMPLE_GO_MOD_DIRS := $(shell find ./example/ -type f -name 'go.mod' -exec dirname {} \; | sort)
|
|
|
|
test:
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
|
echo "go test in $${dir}"; \
|
|
(cd "$${dir}" && \
|
|
go test && \
|
|
env GOOS=linux GOARCH=386 go test && \
|
|
go vet); \
|
|
done
|
|
|
|
go_mod_tidy:
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
|
echo "go mod tidy in $${dir}"; \
|
|
(cd "$${dir}" && \
|
|
go get -u ./... && \
|
|
go mod tidy); \
|
|
done
|
|
|
|
fmt:
|
|
gofmt -w -s ./
|
|
goimports -w -local github.com/uptrace/bun ./
|
|
|
|
run-examples:
|
|
set -e; for dir in $(EXAMPLE_GO_MOD_DIRS); do \
|
|
echo "go run . in $${dir}"; \
|
|
(cd "$${dir}" && go run .); \
|
|
done
|