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 ./...