Create build.yml

This commit is contained in:
Fabricio 2019-11-13 20:16:21 -03:00 committed by GitHub
parent 026a2ccb83
commit a1453230df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Build
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Run tests
run: go test -v
- name: Build
run: go build