1 changed files with 25 additions and 0 deletions
@ -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…
Reference in new issue