iris/.github/workflows/go.yml
Gerasimos (Makis) Maropoulos 62b0a12f91 Github Workflow: the example file was wrong
Former-commit-id: 08dc76cc49c7ea7d73188e2f8886a4139b6d776d
2019-08-14 11:20:38 +03:00

24 lines
406 B
YAML

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 .