replace t.Logf with log.Printf, replace t.Log with log.Print and add gopath to bin

This commit is contained in:
Ajitem Sahasrabuddhe
2019-12-01 21:25:06 +05:30
parent aae5025f27
commit b6d04dbae4
2 changed files with 15 additions and 8 deletions

View File

@@ -22,6 +22,12 @@ jobs:
with:
go-version: ${{ matrix.go }}
- name: Set GOPATH and PATH
run: |
echo "##[set-env name=GOPATH;]$(dirname $GITHUB_WORKSPACE)"
echo "##[add-path]$(dirname $GITHUB_WORKSPACE)/bin"
shell: bash
- name: Checkout Code
uses: actions/checkout@v1
with: