chore: add golang in github action

main
Tran Hau 2021-01-18 17:14:37 +07:00
parent afac68699d
commit e20af6ffd1
1 changed files with 35 additions and 0 deletions

35
.github/workflows/go.yaml vendored Normal file
View File

@ -0,0 +1,35 @@
name: Go
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.15
- run: go version
- run: go test -race ./...
build-gotip:
name: Build using gotip
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.15
- run: go get golang.org/dl/gotip
- run: gotip download
- run: gotip version
- run: gotip build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: golangci/golangci-lint-action@v2
with:
version: v1.34