Changing style of setting up github actions env due to the deprecation of the old way.

This commit is contained in:
Renan DelValle 2020-10-14 20:53:32 -07:00
parent cea39ddd88
commit 464ef72e6b
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9

View file

@ -15,9 +15,9 @@ jobs:
go-version: 1.15
- name: Install goimports
run: go get golang.org/x/tools/cmd/goimports
- name: Set env with list of directories in repo containin go code
run: echo GO_USR_DIRS=$(go list -f {{.Dir}} ./... | grep -E -v "/gen-go/|/vendor/") >> $GITHUB_ENV
- name: Run goimports check
run: test -z `for d in $GO_USR_DIRS; do goimports -d "$d" | tee /dev/stderr; done`
env:
GO_USR_DIRS: $(go list -f {{.Dir}} ./... | grep -E -v "/gen-go/|/vendor/")
- name: Run tests
run: go build -o australis *.go