Files
starter-workflows/ci/go.yml
T

32 lines
719 B
YAML
Raw Normal View History

2019-07-29 17:00:08 -07:00
name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.12
2019-08-02 10:30:20 -04:00
uses: actions/setup-go@v1
2019-07-29 17:00:08 -07:00
with:
version: 1.12
id: go
- name: Check out code into the Go module directory
2019-07-30 08:14:11 -07:00
use: actions/checkout@master
2019-07-29 17:00:08 -07:00
path: ${{ go.module-path }}
- name: Get dependencies
working-directory: ${{ go.module-path }}
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
working-directory: ${{ go.module-path }}
run: go build -v .