fine tunning CI

This commit is contained in:
Marcin Czenko 2025-10-23 04:54:01 +02:00
parent bdae45907b
commit e340e36d97
No known key found for this signature in database
GPG Key ID: A0449219BDBA98AE

View File

@ -46,11 +46,11 @@ jobs:
run: go build -v ./...
- name: Run unit tests
run: gotestsum --packages="./..." -f standard-verbose --rerun-fails -- -v -count=1
run: gotestsum --packages="./communities" -f standard-verbose --rerun-fails -- -v -count=1
- name: Check test coverage
- name: Check test coverage for communities package
run: |
go test -coverprofile=coverage.out ./...
go test -coverprofile=coverage.out ./communities
go tool cover -func=coverage.out
- name: Upload coverage reports