From 31d2df30191d65d736e7eae5fb18aaee10392364 Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Sat, 7 Oct 2023 20:56:55 +0200 Subject: [PATCH] Create go.yml --- .github/workflows/go.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..243171e --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,25 @@ +name: Go Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + ARCH: [arm, arm64, amd64] + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' # Use the desired Go version + + - name: Build + run: go build -v ./...