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

valkyrjaio / valkyrja-starter-app-java / 30323320259
100%

Build:
DEFAULT BRANCH: 26.x
Ran 28 Jul 2026 02:31AM UTC
Jobs 1
Files 36
Run time 1min
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

28 Jul 2026 02:30AM UTC coverage: 34.969%. Remained the same
30323320259

push

github

web-flow
[Grpc] Sort imports in gRPC Config (#46)

# Description

`app/src/main/java/app/grpc/Config.java` has two imports in the wrong
order —
`ResponseSentMiddlewareContract` is listed after
`SendingResponseMiddlewareContract`
instead of alphabetically before it. Google Java Format requires imports
be sorted,
so `spotlessCheck` fails on the file.

The violation was introduced in #37 and has been latent on `26.x` ever
since. It went
unnoticed because the `spotless` job in `.github/workflows/ci.yml`
filters its source
trigger on `'src/**/*.java'`, while this repo's Java source lives under
`app/src/main/java/`. That pattern is root-anchored and matches nothing,
so Spotless
never ran for the change that introduced the violation. It only surfaced
once #45
touched `ci.yml` itself, which is in the job's filter and therefore
forces the job to
run against the whole tree.

This PR fixes only the formatting violation, so #45 can go green. The
underlying path
filter bug — which also affects the `archunit`, `errorprone`,
`spotbugs`, and `junit`
jobs — is fixed separately in a follow-up PR, since switching those
checks on for real
is a larger change.

Verified locally: `./gradlew spotlessCheck --rerun-tasks` fails on
exactly
`app/src/main/java/app/grpc/Config.java` without this change and passes
with it.

## Types of changes

- [ ] Improvement _(non-breaking change which improves code)_
- [x] Bug fix _(non-breaking change which fixes an issue)_
- [ ] New feature _(non-breaking change which adds functionality)_
- [ ] Deprecation _(breaking change which removes functionality)_
- [ ] Breaking change _(fix or feature that would cause existing
functionality to change)_
- [ ] Documentation improvement

## Changes

- **`app/src/main/java/app/grpc/Config.java`** — moved
`ResponseSentMiddlewareContract`
above `SendingResponseMiddlewareContract` so the import block is
alphabetically sorted
  and satisfies Google Java Format.

0 of 8 branches covered (0.0%)

Branch coverage included in aggregate %.

114 of 318 relevant lines covered (35.85%)

2.42 hits per line

Jobs
ID Job ID Ran Files Coverage
1 30323320259.1 28 Jul 2026 02:31AM UTC 36
34.97
GitHub Action Run
Source Files on build 30323320259
  • Tree
  • List 36
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #30323320259
  • 360619dd on github
  • Prev Build on 26.x (#30216118474)
  • Next Build on 26.x (#30323603326)
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