iris/.github/workflows/go.yml
Gerasimos (Makis) Maropoulos 5f49d72b06 Update go.yml
Former-commit-id: e58e581c6d41ca346fbfbe3d4126b03e61b1c1c6
2019-08-14 11:16:31 +03:00

30 lines
562 B
YAML

name: Go
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
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
uses: actions/checkout@master
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 .