lockbox

password manager
Log | Files | Refs | README | LICENSE

commit 675bb10e10aa6cf06eacc601da18edaf95959c58
parent a2947c20f9a4e38f2f098ffc3df0e73cf624d3b8
Author: Sean Enck <sean@ttypty.com>
Date:   Fri, 17 Feb 2023 18:58:28 -0500

try an ubuntu action

Diffstat:
R.github/workflows/main.yml -> .github/workflows/alpine.yml | 0
A.github/workflows/ubuntu.yml | 16++++++++++++++++
2 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/alpine.yml diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml @@ -0,0 +1,16 @@ +name: "build" + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: "deps" + run: apt-get install -y make git golang + - name: "build" + run: make build + - name: "check" + run: make check +