Need the target dir to exist!
Some checks failed
test / go-test (push) Failing after 6m59s

This commit is contained in:
2026-03-19 01:37:48 +00:00
parent 6428dd2157
commit e591c5a4ae

View File

@@ -52,7 +52,9 @@ jobs:
run: go test -v ./...
- name: Generate coverage
run: go test -v -coverprofile=${build_path}/coverage.out ./...
run: |
mkdir -p ${build_path}
go test -v -coverprofile=${build_path}/coverage.out ./...
- name: Code Coverage Report
uses: irongut/CodeCoverageSummary@v1.3.0