commit d9479cc6857dde4738924eecaa433be7bb5e2b77 parent fbf34524885c621394dadc2441d331e2762f494b Author: Sean Enck <sean@ttypty.com> Date: Wed, 18 Jun 2025 07:40:59 -0400 fixing ci build Diffstat:
| M | .build.yml | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.build.yml b/.build.yml @@ -1,6 +1,9 @@ image: alpine/edge packages: + - make - go tasks: - build: | - cd lockbox && go build -o target/ cmd/lb/main.go && LOCKBOX_CONFIG_TOML=fake go test -tags=integration ./... + cd lockbox && go build -o target/lb cmd/lb/main.go + - check: | + cd lockbox && LOCKBOX_CONFIG_TOML=fake go test -tags=integration ./...