2019-08-14 10:13:36 +02:00
|
|
|
name: Go
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build
|
2019-08-14 10:15:21 +02:00
|
|
|
runs-on: ubuntu-latest
|
2019-08-14 10:13:36 +02:00
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Set up Go 1.12
|
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
version: 1.12
|
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
2019-08-14 10:16:31 +02:00
|
|
|
uses: actions/checkout@master
|
2019-08-14 10:13:36 +02:00
|
|
|
path: ${{ go.module-path }}
|
|
|
|
|
|
|
|
- name: Get dependencies
|
|
|
|
working-directory: ${{ go.module-path }}
|
|
|
|
run: |
|
|
|
|
go get -v -t -d ./...
|
|
|
|
- name: Build
|
|
|
|
working-directory: ${{ go.module-path }}
|
|
|
|
run: go build -v .
|