iris/.github/workflows/go.yml
Gerasimos (Makis) Maropoulos e24f1948eb let's see if travis accepts go 1.13 with the current import path.
Former-commit-id: 02feee620655d8f4580cf1916c2d4dacaae03346
2019-10-05 22:33:43 +03:00

24 lines
409 B
YAML

name: Go
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@master
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .