From a1ea3ced1bb68727cb325be5400236a0d98b9292 Mon Sep 17 00:00:00 2001 From: zeidlitz Date: Mon, 24 Nov 2025 18:31:44 +0100 Subject: [PATCH] feat: github actions --- .github/workflows/go.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/go.yaml diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml new file mode 100644 index 0000000..aa6379e --- /dev/null +++ b/.github/workflows/go.yaml @@ -0,0 +1,23 @@ +name: Go Build + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: "1.24" + + - name: Build + run: go build .