mirror of
https://github.com/getsops/sops.git
synced 2026-02-05 21:45:26 +01:00
* Add vault/api to vendor/ * Adds support for sops publish-ing to Vault * Adds support for publishing secrets (unencrypted) to Vault * Adds a new EmitAsMap for TreeBanches * Adds documentation about sops publish-ing to Vault * Initial integration/functional test for publishing to vault
19 lines
246 B
Makefile
19 lines
246 B
Makefile
TEST?=./...
|
|
|
|
default: test
|
|
|
|
fmt: generate
|
|
go fmt ./...
|
|
|
|
test: generate
|
|
go get -t ./...
|
|
go test $(TEST) $(TESTARGS)
|
|
|
|
generate:
|
|
go generate ./...
|
|
|
|
updatedeps:
|
|
go get -u golang.org/x/tools/cmd/stringer
|
|
|
|
.PHONY: default generate test updatedeps
|