Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add subdirectories to tested folders in Github workflow #108

Merged
merged 7 commits into from
Mar 29, 2021
Merged
Next Next commit
Add subdirectories to tested folders in Github workflow
MarkKremer committed Mar 27, 2021
commit 61957e6cdfa9b39fba04b23b7a61d7ee0c162e4a
6 changes: 3 additions & 3 deletions .github/workflows/.go.yml
Original file line number Diff line number Diff line change
@@ -40,8 +40,8 @@ jobs:
uses: actions/checkout@v2
- name: Run tests
run: |
go test -v -race
go test -race -tags=${{ matrix.tags }}
go test ./... -v -race
go test ./... -race -tags=${{ matrix.tags }}

coverage:
env:
@@ -70,7 +70,7 @@ jobs:
- name: Calc coverage
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go test -v -covermode=atomic -coverprofile=coverage.out
go test ./... -v -covermode=atomic -coverprofile=coverage.out
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.0.0
with: