create github golang build workflow

ᴍᴏᴏɴD4ʀᴋ 4 years ago committed by GitHub
parent b448aa223e
commit 09e558ff97
  1. 30
      .github/workflows/build.yml

@ -0,0 +1,30 @@
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
Loading…
Cancel
Save