sopsy 1.1.3

The missing developer experience for SOPS
Documentation
# Codecov configuration for sopsy.
# https://docs.codecov.com/docs/codecovyml-reference
coverage:
  # Round to one decimal and treat coverage as a percentage.
  precision: 2
  round: down
  range: "90...100"
  status:
    # Fail the Codecov "project" check if total line coverage drops below 95%
    # (with a small tolerance so trivial noise does not block PRs).
    project:
      default:
        target: 95%
        threshold: 1%
    # New/changed lines in a PR should be well covered too, but report it as
    # informational rather than a hard failure: some new code is unavoidably
    # hardware-bound (Secure Enclave / Touch ID via `age-plugin-se`) and cannot
    # execute in CI, so patch coverage on those diffs is structurally low. The
    # `project` gate (95%) remains the enforced quality bar.
    patch:
      default:
        target: 90%
        informational: true

# Keep the PR comment concise.
comment:
  layout: "reach, diff, flags, files"
  require_changes: false