capture/.github/workflows/build.yml
2019-11-13 20:28:23 -03:00

26 lines
409 B
YAML

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
with:
fetch-depth: 1
- name: Run tests
run: go test -v
- name: Build
run: go build