chore: add protocol v6.0
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 10s
CI Workflow / CI (pull_request) Failing after 28m23s
CI Workflow / Code coverage report (pull_request) Has been skipped
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 35m1s

chore: add action
This commit is contained in:
Marcel_Henselin 2026-02-11 10:01:10 +01:00
parent 79f25e8b33
commit 0188461ee9
2 changed files with 375 additions and 704 deletions

View file

@ -146,6 +146,17 @@ jobs:
- name: Test
run: make test
- name: Check coverage threshold
shell: bash
run: |
make coverage
COVERAGE=$(go tool cover -func=coverage.out | grep total | awk '{print $3}' | sed 's/%//')
echo "Coverage: $COVERAGE%"
if (( $(echo "$COVERAGE < 80" | bc -l) )); then
echo "Coverage is below 80%"
# exit 1
fi
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with: