commit 1dd1597065158b238319370ef62b20eb56203da2 parent 55497f0969c98fced57e6b9f25e56a13c7c2be46 Author: Sean Enck <sean@ttypty.com> Date: Wed, 18 Jun 2025 07:38:21 -0400 don't use make for ci Diffstat:
| M | .build.yml | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.build.yml b/.build.yml @@ -4,6 +4,6 @@ packages: - go tasks: - build: | - cd lockbox && make + cd lockbox && go build -o target/ cmd/lb/main.go - check: | - cd lockbox && make check + cd lockbox && LOCKBOX_CONFIG_TOML=fake go test -tags=integration ./...