From e9c4b53399a028d0706d1f96cd07dc1d430cc95d Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 31 Oct 2025 21:30:08 +0000 Subject: [PATCH] Update Go workflow to use version 1.25 --- .github/workflows/go.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..6a24626 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,26 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + push: + pull_request: + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v6 + with: + go-version: '1.25' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./...