fix(docs): correct typo in remaining contract tasks documentation

fix(scripts): enhance test coverage script with verbose output and race detection
This commit is contained in:
GitHub Actions
2025-12-03 13:46:13 +00:00
parent 673a496bfa
commit edeaacbfaa
5 changed files with 5774 additions and 4 deletions

View File

@@ -21,11 +21,11 @@ jobs:
- name: Run Go tests
id: go-tests
working-directory: backend
working-directory: ${{ github.workspace }}
env:
CGO_ENABLED: 1
run: |
go test -race -v -coverprofile=coverage.out ./... 2>&1 | tee test-output.txt
bash scripts/go-test-coverage.sh 2>&1 | tee backend/test-output.txt
exit ${PIPESTATUS[0]}
- name: Go Test Summary