Remove module-path, it is unset. Change "use" -> "uses"

This commit is contained in:
Mike Coutermarsh
2019-08-13 09:48:18 -07:00
committed by GitHub
parent 0dd38215f6
commit 605718eb3d
-4
View File
@@ -15,11 +15,8 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@master
with:
path: ${{ go.module-path }}
- name: Get dependencies
working-directory: ${{ go.module-path }}
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
@@ -28,5 +25,4 @@ jobs:
fi
- name: Build
working-directory: ${{ go.module-path }}
run: go build -v .