lockbox

password manager
Log | Files | Refs | README | LICENSE

commit a357831acb1ecd8807a658c11cbdf8effc7d0c1f
parent ab7292c1730bc2a647eeca80b6c8ee479e797e33
Author: Sean Enck <sean@ttypty.com>
Date:   Fri, 17 Feb 2023 19:06:36 -0500

working on macos build

Diffstat:
M.github/workflows/build.yml | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml @@ -24,9 +24,11 @@ jobs: macos-build: runs-on: macos-latest steps: + - name: "deps rm" + run: brew remove go - name: "deps" - run: brew install make go git + run: brew install make go - name: "build" - run: make build + run: gmake build - name: "check" - run: make check + run: gmake check