• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

codenotary / immudb
85%
master: 85%

Build:
Build:
LAST BUILD BRANCH: dependabot/go_modules/github.com/prometheus/common-0.70.1
DEFAULT BRANCH: master
Repo Added 30 May 2020 08:52AM UTC
Files 311
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH chore/fix-coverage-ci
branch: chore/fix-coverage-ci
CHANGE BRANCH
x
Reset
  • chore/fix-coverage-ci
  • changelog/1.11.1
  • chore/build-updates
  • chore/bump-grpc-1.82.1
  • chore/deps-trivy-x-bumps
  • chore/test-followups
  • ci-regex-fix
  • claude-plugin
  • dependabot/github_actions/actions/checkout-7
  • dependabot/github_actions/actions/setup-go-7
  • dependabot/github_actions/actions/upload-artifact-7
  • dependabot/github_actions/docker/setup-qemu-action-4
  • dependabot/github_actions/securego/gosec-2.28.0
  • dependabot/go_modules/github.com/grpc-ecosystem/grpc-gateway/v2-2.29.0
  • dependabot/go_modules/github.com/prometheus/common-0.70.1
  • dependabot/go_modules/github.com/rogpeppe/go-internal-1.15.0
  • dependabot/go_modules/github.com/spf13/viper-1.21.0
  • dependabot/go_modules/golang.org/x/net-0.57.0
  • docker-init-db
  • docs/embedding-guide
  • docs/rust-sdk-guidance
  • fargate
  • feat/auditlog
  • feat/coalesce
  • feat/s3performance
  • feature/between-and
  • feature/constant-selection-query
  • feature/discard-precommitted-txs
  • feature/extract-from-timestamp
  • feature/individual-col-primary-key
  • feature/left-join
  • feature/pgsql-catalog
  • fix/2082-scan-latest
  • fix/cas-notarize
  • fix/display-actual-config-path-on-startup
  • fix/empty-tree-flush
  • fix/empty-tree-flush-file
  • fix/index_metrix
  • fix/issue-2100-sql-panics
  • fix/multiapp-readat-keynotfound-race
  • fix/pgsql-empty-parse-panic
  • fix/swagger-test-go122-mux
  • gh_action_update
  • issue-2028
  • master
  • moshix-patch-8
  • parallelvcn
  • patch-1
  • refs/tags/v1.1.0
  • refs/tags/v1.10.0
  • refs/tags/v1.11.0
  • refs/tags/v1.11.0-RC2
  • refs/tags/v1.11.1
  • refs/tags/v1.2.0
  • refs/tags/v1.2.0-RC1
  • refs/tags/v1.2.1
  • refs/tags/v1.2.2
  • refs/tags/v1.2.3
  • refs/tags/v1.2.3-RC1
  • refs/tags/v1.2.4
  • refs/tags/v1.2.4-RC1
  • refs/tags/v1.3.0
  • refs/tags/v1.3.0-RC1
  • refs/tags/v1.3.1
  • refs/tags/v1.3.2
  • refs/tags/v1.3.2-RC1
  • refs/tags/v1.4.0
  • refs/tags/v1.4.0-RC1
  • refs/tags/v1.4.0-RC2
  • refs/tags/v1.4.1
  • refs/tags/v1.4.1-RC1
  • refs/tags/v1.5.0
  • refs/tags/v1.5.0-RC1
  • refs/tags/v1.9.0-RC1
  • refs/tags/v1.9.0-RC2
  • refs/tags/v1.9.3
  • refs/tags/v1.9.4
  • refs/tags/v1.9.5
  • refs/tags/v1.9.6
  • refs/tags/v1.9.7
  • refs/tags/v1.9DOM
  • refs/tags/v1.9DOM.0
  • refs/tags/v1.9DOM.1
  • refs/tags/v1.9DOM.1-RC1
  • refs/tags/v1.9DOM.2
  • refs/tags/v1.9DOM.2-RC1
  • refs/tags/v2.0.0-RC1
  • release/v1.10.0
  • release/v1.2.4
  • release/v1.2.4-RC1
  • release/v1.3.0
  • release/v1.3.0-RC1
  • release/v1.3.1
  • release/v1.3.2
  • release/v1.3.2-RC1
  • release/v1.4.0
  • release/v1.4.0-RC1
  • release/v1.4.0-RC2
  • release/v1.4.1
  • release/v1.4.1-RC1
  • release/v1.5.0
  • release/v1.5.0-RC1
  • release/v1.9.0-RC1
  • release/v1.9.0-RC2
  • release/v1.9.3
  • release/v1.9.4
  • release/v1.9.5
  • release/v1.9.6
  • release/v1.9.7
  • release/v1.9DOM
  • release/v1.9DOM.0
  • release/v1.9DOM.1
  • release/v1.9DOM.1-RC1
  • release/v1.9DOM.2
  • release/v1.9DOM.2-RC1
  • release/v2.0.0-RC1
  • update-copyright-notice
  • v2-prerelease

29 Jul 2026 04:47PM UTC coverage: 84.975% (+0.02%) from 84.96%
30472424263

Pull #2115

gh-ci

vchaindz
ci(coverage): stop swallowing test failures, and drop the unused codecov config

The Coverage job ended its test run with `|| true`, which defeated the
`set -o pipefail` on the line directly above it. A failing or panicking package
was discarded, the partial coverage.txt was uploaded regardless, and the job
reported success. A real test failure therefore surfaced only as a slightly
lower coverage percentage on coveralls — indistinguishable from ordinary
measurement noise, and invisible in the job status.

Capture go-acc's exit status instead. The profile is still uploaded, so a failed
run does not also become a reporting blind spot, and the job then fails with an
explicit ::error:: naming the exit code. In push.yml the check is placed after
`docker rm -f minio` so the container is torn down even when the run failed.

Also removes codecov.yml. No workflow references codecov — coverage goes to
coveralls via goveralls in pull.yml and push.yml — so the file only misled
anyone editing it expecting an effect.

Verified: both workflows still parse as YAML (5 and 10 jobs); the modified run
blocks pass `bash -n`; no `${{ }}` interpolation was introduced; and the
exit-status logic was exercised directly — pass exits 0, failure exits non-zero
while still performing the upload.

Not addressed here, deliberately: coverage is measured nondeterministically
(consecutive master builds drift by ~0.006% with no coverage-relevant change),
and the external coverage/coveralls status reports failure even when coverage
increases. That status is set from the coveralls.io project settings, not from
this repository.
Pull Request #2115: ci(coverage): stop swallowing test failures, and drop the unused codecov config

45228 of 53225 relevant lines covered (84.98%)

124555.17 hits per line

Relevant lines Covered
Build:
Build:
53225 RELEVANT LINES 45228 COVERED LINES
124555.17 HITS PER LINE
Source Files on chore/fix-coverage-ci
  • Tree
  • List 311
  • Changed 5
  • Source Changed 0
  • Coverage Changed 5
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
30472424263 chore/fix-coverage-ci ci(coverage): stop swallowing test failures, and drop the unused codecov config The Coverage job ended its test run with `|| true`, which defeated the `set -o pipefail` on the line directly above it. A failing or panicking package was discarded, ... Pull #2115 29 Jul 2026 04:55PM UTC vchaindz gh-ci
84.98
See All Builds (4113)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc