Browse Source

Create go.yml

master
yuriy0803 2 years ago committed by GitHub
parent
commit
31d2df3019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      .github/workflows/go.yml

25
.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 ./...
Loading…
Cancel
Save