Former-commit-id: 8c0f09376521b56ed5a45e6e3ba590e7ce025deb
This commit is contained in:
Gerasimos (Makis) Maropoulos 2019-08-14 19:42:30 +03:00
commit e0af8ab29a

23
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,23 @@
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:
version: 1.12
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 .