commit 032b9bc8e8eeb4c03a9870bebb65f4da593d25e2 parent 9a8ae578d68988703c5bc484e474aeeec385ad22 Author: Sean Enck <sean@ttypty.com> Date: Fri, 17 Feb 2023 19:44:31 -0500 try a common workflow Diffstat:
| M | .github/workflows/build.yml | | | 6 | +----- |
| A | scripts/ci/build.yml | | | 9 | +++++++++ |
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml @@ -8,13 +8,9 @@ jobs: container: image: alpine:latest steps: - - uses: actions/checkout@v3 - name: "deps" run: apk add go make git - - name: "build" - run: make build - - name: "check" - run: make check + - uses: enckse/lockbox/scripts/ci@master ubuntu-build: runs-on: ubuntu-latest steps: diff --git a/scripts/ci/build.yml b/scripts/ci/build.yml @@ -0,0 +1,9 @@ +name: "build steps" + +runs: + steps: + - uses: actions/checkout@v3 + - name: "build" + run: make build + - name: "check" + run: make check