From 62b0a12f91727a91d6c89c8b1a1cb87de82c6c64 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Wed, 14 Aug 2019 11:20:38 +0300 Subject: [PATCH] Github Workflow: the example file was wrong Former-commit-id: 08dc76cc49c7ea7d73188e2f8886a4139b6d776d --- .github/workflows/go.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 25f15de3..dfb256aa 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 .