Skip to content

Commit

Permalink
Updated test command.
Browse files Browse the repository at this point in the history
  • Loading branch information
Direside committed Jun 12, 2020
1 parent 091f60e commit c001337
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/config.yml
Expand Up @@ -14,7 +14,9 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: 1.12
- name: Run Go Tests
- name: Download Go Packages
run: |
make deps
- name: Run Go Tests
run: |
make check
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -7,7 +7,7 @@ deps:
go mod download

check:
go test -v $(go list -f '{{.Dir}}' ./... | grep -v /tmp/)
go list -f '{{.Dir}}' ./... | grep -v /tmp/ | xargs go test -v

fmt:
go fmt ./...
Expand Down

0 comments on commit c001337

Please sign in to comment.