lockbox

password manager
Log | Files | Refs | README | LICENSE

commit 9a8ae578d68988703c5bc484e474aeeec385ad22
parent 21277de5a02c840d2467b588252eb0d1c579b106
Author: Sean Enck <sean@ttypty.com>
Date:   Fri, 17 Feb 2023 19:29:43 -0500

checkout the project...

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

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml @@ -24,13 +24,12 @@ jobs: macos-build: runs-on: macos-latest steps: + - uses: actions/checkout@v3 - name: "deps rm" run: rm -f /usr/local/bin/go /usr/local/bin/gofmt - name: "deps" run: brew install go - - name: "ls" - run : ls - name: "build" - run: make -f Makefile build + run: make build - name: "check" - run: make -f Makefile check + run: make check