commit 0a33d581952043266ac46ee4c1300f01e62c592a parent 306d51363179972b5cb533993cdfcc1e66b521a6 Author: Sean Enck <sean@ttypty.com> Date: Thu, 29 Jul 2021 18:25:14 -0400 workflow actions Diffstat:
| A | .github/workflows/main.yml | | | 21 | +++++++++++++++++++++ |
1 file changed, 21 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: "build" + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: alpine:latest + steps: + - uses: actions/checkout@v2 + - name: "setup deps" + run: "apk add make bash git go" + - name: "configure" + run: "./configure" + - name: "build" + run: make