From 9e212f5cbaa057cd828e2c315236b09dcdfb576d Mon Sep 17 00:00:00 2001 From: Abe Winter Date: Mon, 24 Jun 2024 23:34:30 -0400 Subject: [PATCH] lint and build --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..98ce7b9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +on: + push: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + - name: lint + run: make lint + - name: build + run: PATH_VERSION=latest make all + - name: upload + if: false + run: echo todo upload