Add GitHub action for Go project

This commit is contained in:
sunboyy 2021-01-15 22:29:46 +07:00
parent d0b5bcccf4
commit b851cef07e

32
.github/workflows/go.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Install dependencies
run: go get -u golang.org/x/lint/golint
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Vet & Lint
run: |
go vet ./...
golint ./...