Compare commits

...

2 Commits
v4.1.3 ... v4

Author SHA1 Message Date
fe11fb8bcd Обновить .github/workflows/job_sync.yml
All checks were successful
sync / sync (push) Successful in 8s
Signed-off-by: Василий Толстов <v.tolstov@unistack.org>
2025-10-29 09:33:32 +03:00
vtolstov
7e554f2bbf Apply Code Coverage Badge 2025-10-17 08:04:14 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ jobs:
dst_hash=$(git ls-remote ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} refs/heads/master | cut -f1)
echo "src_hash=$src_hash"
echo "dst_hash=$dst_hash"
if [ "$src_hash" != "$dst_hash" ]; then
if [ "$src_hash" != "$dst_hash" -a "$src_hash" != "" -a "$dst_hash" != "" ]; then
echo "sync_needed=true" >> $GITHUB_OUTPUT
else
echo "sync_needed=false" >> $GITHUB_OUTPUT

View File

@@ -1,5 +1,5 @@
# HTTP Client
![Coverage](https://img.shields.io/badge/Coverage-42.4%25-yellow)
![Coverage](https://img.shields.io/badge/Coverage-42.7%25-yellow)
This plugin is an HTTP client for [Micro](https://pkg.go.dev/go.unistack.org/micro/v4).
It implements the [micro.Client](https://pkg.go.dev/go.unistack.org/micro/v4/client#Client) interface.