You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go test $$(go list ./... | grep -v /vendor/) -race -coverprofile cover.out
# test-ci runs tests without coverage to avoid needing the covdata tool in CI (e.g. GitHub Actions).
test-ci:
which go
TEST_CI=1 go test -v $$(go list ./... | grep -v /vendor/) -race
gen:
go generate
collect_i18n:
goi18n extract -outdir pkg/api/i18n/translations -packagepath "github.com/tonkeeper/opentonapi/pkg/api/i18n" -messagetype M
#go run github.com/nicksnyder/go-i18n/v2/goi18n extract -outdir pkg/api/i18n/translations todo: switch to this version after https://github.com/nicksnyder/go-i18n/pull/295