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

@@ -20,7 +20,7 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: "1.26.x"
- name: Get go-hashfiles
uses: https://gitea.com/actions/go-hashfiles@v0.0.1
id: hash-go
@@ -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