Github Workflow: the example file was wrong

Former-commit-id: 08dc76cc49c7ea7d73188e2f8886a4139b6d776d
This commit is contained in:
Gerasimos (Makis) Maropoulos 2019-08-14 11:20:38 +03:00 committed by GitHub
parent 5f49d72b06
commit 62b0a12f91

View File

@ -1,8 +1,5 @@
name: Go
on:
push:
branches:
- master
on: [push]
jobs:
build:
@ -18,12 +15,9 @@ jobs:
- 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 .