chore: add_protocol #47

Merged
marcel.henselin merged 2 commits from chore/add_protocol into alpha 2026-02-11 09:07:39 +00:00
2 changed files with 375 additions and 704 deletions
Showing only changes of commit 0188461ee9 - Show all commits

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: