commit fbf34524885c621394dadc2441d331e2762f494b parent 1dd1597065158b238319370ef62b20eb56203da2 Author: Sean Enck <sean@ttypty.com> Date: Wed, 18 Jun 2025 07:39:57 -0400 do all as one step Diffstat:
| M | .build.yml | | | 5 | +---- |
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/.build.yml b/.build.yml @@ -1,9 +1,6 @@ image: alpine/edge packages: - - make - go tasks: - build: | - cd lockbox && go build -o target/ cmd/lb/main.go - - check: | - cd lockbox && LOCKBOX_CONFIG_TOML=fake go test -tags=integration ./... + cd lockbox && go build -o target/ cmd/lb/main.go && LOCKBOX_CONFIG_TOML=fake go test -tags=integration ./...