woodpecker/.github/workflows/go.yml

26 lines
445 B
YAML
Raw Normal View History

2019-08-27 07:26:01 +00:00
name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.12
uses: actions/setup-go@v1
with:
go-version: 1.12.4
- name: Check out code into the Go module directory
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Test
run: |
go test -cover $(go list ./... | grep -v /vendor/)
- name: Build
run: ./.drone.sh